forked from yanivnizan/unity3d-levelup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
create_deploys
executable file
·81 lines (73 loc) · 3.02 KB
/
create_deploys
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
echo "creating unitypackage for SOOMLA Core"
/Applications/Unity/Unity.app/Contents/MacOS/Unity \
-batchmode \
-logFile create_unity.log \
-projectPath $PWD/Soomla/ \
-exportPackage \
Assets/Plugins/Android/SoomlaAndroidCore.jar \
Assets/Plugins/Android/square-otto-1.3.2.jar \
Assets/Plugins/Android/UnitySoomlaAndroidCore.jar \
Assets/Plugins/iOS/libSoomlaIOSCore.a \
Assets/Plugins/iOS/libUnitySoomlaiOSCore.a \
Assets/Plugins/Soomla/Core \
Assets/Soomla/Editor/SoomlaPostBuild.cs \
Assets/Soomla/Editor/SoomlaSettingsEditor.cs \
Assets/Soomla/Editor/build-tools/Soomla_CoreRunner.py \
Assets/Soomla/Editor/build-tools/mod_pbxproj.pyc \
Assets/Soomla/Prefabs/CoreEvents.prefab \
Assets/Soomla/Resources/SoomlaEditorScript.asset \
Assets/Soomla/Resources/soom_logo.png \
$PWD/soomla-unity3d-core.unitypackage \
-quit
echo "creating unitypackage for SOOMLA Store"
/Applications/Unity/Unity.app/Contents/MacOS/Unity \
-batchmode \
-logFile create_unity.log \
-projectPath $PWD/Soomla/ \
-exportPackage \
Assets/Plugins/Android/AndroidStore.jar \
Assets/Plugins/Android/AndroidStoreGooglePlay.jar \
Assets/Plugins/Android/UnityAndroidStore.jar \
Assets/Plugins/iOS/libSoomlaiOSStore.a \
Assets/Plugins/iOS/libUnityiOSStore.a \
Assets/Plugins/Soomla/Store \
Assets/Soomla/Editor/build-tools/Soomla_StoreRunner.py \
Assets/Soomla/Prefabs/StoreEvents.prefab \
Assets/Soomla/Resources \
Assets/WebPlayerTemplates/SoomlaConfig/android/android-billing-services \
$PWD/soomla-unity3d-store.unitypackage \
-quit
echo "creating unitypackage for SOOMLA Profile"
/Applications/Unity/Unity.app/Contents/MacOS/Unity \
-batchmode \
-logFile create_unity.log \
-projectPath $PWD/Soomla/ \
-exportPackage \
Assets/Plugins/Android/AndroidProfile.jar \
Assets/Plugins/Android/UnityAndroidProfile.jar \
Assets/Plugins/iOS/libSoomlaiOSProfile.a \
Assets/Plugins/iOS/libUnityiOSProfile.a \
Assets/Plugins/Soomla/Profile \
Assets/Soomla/Editor/build-tools/Soomla_ProfileRunner.py \
Assets/Soomla/Prefabs/ProfileEvents.prefab \
Assets/WebPlayerTemplates/SoomlaConfig/android/android-profile-google \
Assets/WebPlayerTemplates/SoomlaConfig/android/android-profile-twitter \
Assets/WebPlayerTemplates/SoomlaConfig/ios/ios-profile-google \
Assets/WebPlayerTemplates/SoomlaConfig/ios/ios-profile-twitter \
$PWD/soomla-unity3d-profile.unitypackage \
-quit
echo "creating unitypackage for SOOMLA LevelUp"
/Applications/Unity/Unity.app/Contents/MacOS/Unity \
-batchmode \
-logFile create_unity.log \
-projectPath $PWD/Soomla/ \
-exportPackage \
Assets/Plugins/Android/AndroidLevelUp.jar \
Assets/Plugins/Android/UnityAndroidLevelup.jar \
Assets/Plugins/iOS/libSoomlaiOSLevelUp.a \
Assets/Plugins/iOS/libUnityiOSLevelUp.a \
Assets/Plugins/Soomla/Levelup \
Assets/Soomla/Editor/build-tools/Soomla_LevelupRunner.py \
Assets/Soomla/Prefabs/LevelUpEvents.prefab \
$PWD/soomla-unity3d-levelup.unitypackage \
-quit