-
Notifications
You must be signed in to change notification settings - Fork 0
/
tiapp.xml
112 lines (112 loc) · 4.26 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
101
102
103
104
105
106
107
108
109
110
111
112
<?xml version="1.0" encoding="UTF-8"?>
<ti:app
xmlns:ti="http://ti.appcelerator.org">
<id>com.appcelerator.sample.ti520</id>
<name>Ti 5.2.0</name>
<version>1.0</version>
<publisher>Appcelerator</publisher>
<url>http://www.appcelerator.com</url>
<description>This app demonstrates new features in Titanium 5.2.0</description>
<copyright>2016 by Appcelerator, Inc.</copyright>
<icon>appicon.png</icon>
<navbar-hidden>false</navbar-hidden>
<!-- Android: Set to true for the splash screen to take the full screen -->
<fullscreen>true</fullscreen>
<analytics>false</analytics>
<guid>11111111-1111-1111-1111-111111111111</guid>
<property name="ti.ui.defaultunit" type="string">dp</property>
<property name="ti.version.range" type="string">>=5.2.2 <5.3</property>
<ios>
<!-- We have tested this sample on iOS 9 -->
<min-ios-ver>9.0</min-ios-ver>
<!--
Toggle use of builtin or custom launch screen storyboard
Rename platform/ios/_LaunchScreen.storyboard to use this custom storyboard
-->
<enable-launch-screen-storyboard>true</enable-launch-screen-storyboard>
<!-- Set backgroundColor for builtin storyboard and/or root view controller -->
<default-background-color>#C7172C</default-background-color>
<!-- Enable to support iPad Split View and Slide Over -->
<use-auto-layout>true</use-auto-layout>
<plist>
<dict>
<!-- Set to false to support iPad Split View and Slide Over -->
<key>UIRequiresFullScreen</key>
<false/>
<!-- Define User Activity used in index.js -->
<key>NSUserActivityTypes</key>
<array>
<string>com.appcelerator.sample.ti520.tab</string>
</array>
<key>UISupportedInterfaceOrientations~iphone</key>
<array>
<string>UIInterfaceOrientationPortrait</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>
</dict>
</plist>
<!-- Reference WatchOS2 Swift Extension -->
<extensions>
<extension projectPath="extensions/Ti 5.2.0/Ti 5.2.0.xcodeproj">
<target name="Ti 5.2.0 WatchKit Extension">
<provisioning-profiles>
<device/>
<dist-appstore/>
<dist-adhoc/>
</provisioning-profiles>
</target>
<target name="Ti 5.2.0 WatchKit App">
<provisioning-profiles>
<device/>
<dist-appstore/>
<dist-adhoc/>
</provisioning-profiles>
</target>
</extension>
</extensions>
</ios>
<android
xmlns:android="http://schemas.android.com/apk/res/android">
<manifest>
<!-- Use custom theme -->
<application android:theme="@style/appcelerator">
<!-- Required to use StreetViewPanorama -->
<meta-data android:name="com.google.android.maps.v2.API_KEY" android:value="AIzaSyB1ATGRrby9stkKxvdl3SBYxSVB5Kkm7yM"/>
</application>
<!-- Required to install a launcher shortcut -->
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT"/>
</manifest>
</android>
<modules>
<!-- Require ti.map module bundled with the Titanium SDK for StreetViewPanorama -->
<module platform="android">ti.map</module>
</modules>
<deployment-targets>
<target device="android">true</target>
<target device="ipad">true</target>
<target device="iphone">true</target>
<target device="mobileweb">false</target>
<target device="windows">false</target>
</deployment-targets>
<sdk-version>5.2.2.GA</sdk-version>
<plugins>
<plugin version="1.0">ti.alloy</plugin>
<plugin version="1.0">ti.version</plugin>
</plugins>
</ti:app>