-
Notifications
You must be signed in to change notification settings - Fork 5
/
tiapp.xml
100 lines (100 loc) · 5.67 KB
/
tiapp.xml
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<?xml version="1.0" encoding="UTF-8"?>
<ti:app xmlns:ti="http://ti.appcelerator.org">
<id>com.blackgategames.mdwplatino</id>
<name>Space Invaders</name>
<version>1.0</version>
<publisher>johngould</publisher>
<url>http://</url>
<description>not specified</description>
<copyright>2015 by johngould</copyright>
<icon>appicon.png</icon>
<fullscreen>false</fullscreen>
<navbar-hidden>false</navbar-hidden>
<analytics>true</analytics>
<guid>ed3abe0e-20ba-4858-9000-6a23b03e4c97</guid>
<property name="ti.ui.defaultunit" type="string">dp</property>
<ios>
<plist>
<dict>
<key>UISupportedInterfaceOrientations~iphone</key>
<array>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UIRequiresPersistentWiFi</key>
<false/>
<key>UIPrerenderedIcon</key>
<false/>
<key>UIStatusBarHidden</key>
<false/>
<key>UIStatusBarStyle</key>
<string>UIStatusBarStyleDefault</string>
</dict>
</plist>
</ios>
<android xmlns:android="http://schemas.android.com/apk/res/android">
<manifest android:installLocation="auto" android:versionCode="1" android:versionName="0.5">
<uses-sdk android:minSdkVersion="15" android:targetSdkVersion="21"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<application android:debuggable="false"
android:icon="@drawable/appicon"
android:label="Mobile Dev Wars" android:name="MobileDevWarsApplication">
<activity
android:configChanges="keyboardHidden|orientation|screenSize"
android:label="@string/app_name"
android:name=".MobileDevWarsActivity" android:theme="@style/Theme.Titanium">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity
android:configChanges="keyboardHidden|orientation|screenSize" android:name="org.appcelerator.titanium.TiActivity"/>
<activity
android:configChanges="keyboardHidden|orientation|screenSize"
android:name="org.appcelerator.titanium.TiTranslucentActivity" android:theme="@android:style/Theme.Translucent"/>
<activity android:configChanges="screenSize" android:name="ti.modules.titanium.ui.android.TiPreferencesActivity"/>
<service android:exported="false" android:name="org.appcelerator.titanium.analytics.TiAnalyticsService"/>
</application>
</manifest>
</android>
<modules>
<module platform="android">io.platino</module>
<module platform="iphone">io.platino</module>
<module platform="commonjs">ti.cloud</module>
</modules>
<deployment-targets>
<target device="android">true</target>
<target device="blackberry">false</target>
<target device="ipad">true</target>
<target device="iphone">true</target>
<target device="mobileweb">false</target>
<target device="tizen">false</target>
</deployment-targets>
<sdk-version>4.1.0.GA</sdk-version>
<property name="appc-app-id" type="string">5590e0cd2498394930dc61a3</property>
<property name="acs-authbase-url-development" type="string">https://secure-identity.cloud.appcelerator.com</property>
<property name="acs-base-url-development" type="string">https://api.cloud.appcelerator.com</property>
<property name="acs-oauth-secret-development" type="string">XtrY0HkITI7afsyGphhyZQnMS4GGRwgD</property>
<property name="acs-oauth-key-development" type="string">28kvJMZrIEfGnZ5PZ0Ge0aWxljqJ6wLj</property>
<property name="acs-api-key-development" type="string">kvyO2Q1x9UuiVbmjSiHgEu8qufxqWlIp</property>
<property name="acs-username-development" type="string">appc_app_user_dev</property>
<property name="acs-password-development" type="string">BOwcaiBYwXtdSo9zKT</property>
<property name="acs-authbase-url-production" type="string">https://secure-identity.cloud.appcelerator.com</property>
<property name="acs-base-url-production" type="string">https://api.cloud.appcelerator.com</property>
<property name="acs-oauth-secret-production" type="string">Dskvggy6zRbMVLjq8weGfjwNSGiDDimJ</property>
<property name="acs-oauth-key-production" type="string">U6R1IUZNueukC9Toa252awyLF8fO7RqP</property>
<property name="acs-api-key-production" type="string">4dbVlXl1yU89oN0FJCfLzJXyHWCDDUPB</property>
<property name="acs-username-production" type="string">appc_app_user</property>
<property name="acs-password-production" type="string">9AB5mpvyBI9tfOSEvu</property>
<property name="appc-org-id" type="string">100004970</property>
<property name="appc-creator-user-id" type="string">e3c14dba-f2e7-4a4b-8565-95f3bdee4903</property>
</ti:app>