-
Notifications
You must be signed in to change notification settings - Fork 1
/
tiapp.xml
96 lines (96 loc) · 4.55 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
<?xml version="1.0" encoding="UTF-8"?>
<ti:app xmlns:ti="http://ti.appcelerator.org">
<property name="app.backendless.application_id" type="string">18F03ACC-5BDA-13F2-FF4D-4A027A07FC00</property>
<property name="app.backendless.secret_key" type="string">20C2CC94-A867-F193-FFBB-AB8468264C00</property>
<property name="app.backendless.version" type="string">v1</property>
<property name="app.backendless.api_url" type="string">https://devlearn.database.laptopfreek0.com:8181/api</property>
<id>com.devlearnapp.devlearn</id>
<name>devLearn</name>
<version>1.3.0</version>
<publisher>devLearn</publisher>
<url>http://www.devlearnapp.com</url>
<description>A mobile application to help kids learn to code in a fun and exciting way.</description>
<copyright>2016 devLearn</copyright>
<icon>appicon.png</icon>
<fullscreen>false</fullscreen>
<navbar-hidden>false</navbar-hidden>
<analytics>true</analytics>
<guid>e5d8e4bb-d2c9-42c7-954a-af36afa14b39</guid>
<property name="ti.ui.defaultunit" type="string">dp</property>
<ios>
<min-ios-ver>7.0</min-ios-ver>
<plist>
<dict>
<key>UISupportedInterfaceOrientations~iphone</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</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:versionCode="13" android:versionName="1.3.0">
<application android:theme="@style/NoActionBar"/>
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="19"/>
<application android:debuggable="false"
android:icon="@drawable/appicon"
android:label="devLearn"
android:name="DevlearnApplication" android:theme="@style/NoActionBar">
<activity
android:configChanges="keyboardHidden|orientation|screenSize"
android:label="@string/app_name"
android:name=".DevlearnActivity"
android:screenOrientation="portrait" 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" android:screenOrientation="portrait"/>
<activity
android:configChanges="keyboardHidden|orientation|screenSize"
android:name="org.appcelerator.titanium.TiTranslucentActivity"
android:screenOrientation="portrait" android:theme="@style/Theme.AppCompat.Translucent"/>
<activity android:configChanges="screenSize"
android:name="ti.modules.titanium.ui.android.TiPreferencesActivity" android:screenOrientation="portrait"/>
<service android:exported="false"
android:name="com.appcelerator.analytics.APSAnalyticsService" android:screenOrientation="portrait"/>
</application>
</manifest>
</android>
<mobileweb>
<precache/>
<splash>
<enabled>true</enabled>
<inline-css-images>true</inline-css-images>
</splash>
<theme>default</theme>
</mobileweb>
<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">true</target>
</deployment-targets>
<sdk-version>3.5.2.v20160311103211</sdk-version>
<plugins>
<plugin version="1.0">ti.alloy</plugin>
</plugins>
</ti:app>