-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathtiapp.xml
99 lines (85 loc) · 3.49 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
<?xml version="1.0" encoding="UTF-8"?>
<ti:app xmlns:ti="http://ti.appcelerator.org">
<id>com.appcelerator.sample.ti510</id>
<name>Ti 5.1.0</name>
<version>1.0</version>
<publisher>Appcelerator</publisher>
<url>http://www.appcelerator.com</url>
<description>This app demonstrates new features in Titanium 5.1.0</description>
<copyright>2015 by Appcelerator, Inc.</copyright>
<icon>appicon.png</icon>
<navbar-hidden>false</navbar-hidden>
<fullscreen>false</fullscreen>
<analytics>false</analytics>
<guid>11111111-1111-1111-1111-111111111111</guid>
<property name="ti.ui.defaultunit" type="string">dp</property>
<ios>
<!-- we test this sample on iOS 8.4 and later -->
<min-ios-ver>8.4</min-ios-ver>
<!-- Remove or set to false to disable auto layout (default) -->
<use-autolayout>true</use-autolayout>
<!-- Remove or set to false to run JS on its own thread (default) -->
<run-on-main-thread>true</run-on-main-thread>
<!-- Remove or set to false to disable asset catalogs for image assets (default) -->
<use-app-thinning>true</use-app-thinning>
<plist>
<dict>
<key>UISupportedInterfaceOrientations~iphone</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<!-- This one is considered bad practice by Apple, but here to demonstrate auto layout -->
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UIRequiresPersistentWiFi</key>
<false/>
<key>UIPrerenderedIcon</key>
<false/>
<key>UIStatusBarHidden</key>
<false/>
<key>UIStatusBarStyle</key>
<string>UIStatusBarStyleLightContent</string>
<!--
To use Geolocation you need to specify the reason using the follow key
or NSLocationWhenInUseUsageDescription if you only need it when the app runs.
You can localize the value in a i18n/<lang>/app.xml file (not strings.xml!)
-->
<key>NSLocationAlwaysUsageDescription</key>
<string>Deny or grant permission to test different scenarios.</string>
</dict>
</plist>
</ios>
<android xmlns:android="http://schemas.android.com/apk/res/android">
<manifest>
<!--
Required if you want to run the app on Android 2.3.7 with Titanium
4.1.1 or older to test the AppCompat Button
<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="23"/>
-->
<application android:theme="@style/appcelerator" />
</manifest>
</android>
<modules>
<!-- Require the ti.safaridialog module bundled with the Titanium SDK -->
<module platform="iphone">ti.safaridialog</module>
</modules>
<deployment-targets>
<target device="android">true</target>
<target device="ipad">false</target>
<target device="iphone">true</target>
<target device="mobileweb">false</target>
<target device="windows">false</target>
</deployment-targets>
<sdk-version>5.1.1.GA</sdk-version>
<plugins>
<plugin version="1.0">ti.alloy</plugin>
</plugins>
</ti:app>