-
Notifications
You must be signed in to change notification settings - Fork 0
/
tiapp.xml
121 lines (121 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
113
114
115
116
117
118
119
120
121
<?xml version="1.0" encoding="UTF-8"?>
<ti:app
xmlns:ti="http://ti.appcelerator.org">
<id>${id}</id>
<name>${name}</name>
<version>1.0.60</version>
<publisher>${publisher}</publisher>
<url>${url}</url>
<description>${description}</description>
<copyright>${copyright}</copyright>
<icon>appicon.png</icon>
<fullscreen>false</fullscreen>
<navbar-hidden>false</navbar-hidden>
<analytics>false</analytics>
<guid>${guid}</guid>
<property name="ti.ui.defaultunit" type="string">dp</property>
<property name="run-on-main-thread" type="bool">true</property>
<ios>
<min-ios-ver>12.0</min-ios-ver>
<enable-launch-screen-storyboard>true</enable-launch-screen-storyboard>
<use-app-thinning>true</use-app-thinning>
<use-jscore-framework>true</use-jscore-framework>
<!-- Set backgroundColor for builtin storyboard and/or root view controller -->
<default-background-color>#ffffff</default-background-color>
<!-- Enable to support iPad Split View and Slide Over -->
<use-autolayout>false</use-autolayout>
<plist>
<dict>
<key>CFBundleVersion</key>
<string>1.0.60</string>
<key>CFBundleShortVersionString</key>
<string>1.0.60</string>
<key>UISupportedInterfaceOrientations~iphone</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<!-- <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>
<!-- Dark Mode: Automatic, Light, or Dark -->
<key>UIUserInterfaceStyle</key>
<string>Automatic</string>
<!-- Update status bar based on style preference -->
<key>UIViewControllerBasedStatusBarAppearance</key>
<true />
<key>UIStatusBarHidden</key>
<false />
<key>UIStatusBarStyle</key>
<string>UIStatusBarStyleDefault</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false />
<key>NSCameraUsageDescription</key>
<string>Can we use your camera?</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>Can we save to your library?</string>
<key>NSMicrophoneUsageDescription</key>
<string>Can we use your microphone?</string>
<key>NSAppleMusicUsageDescription</key>
<string>Can we use your music library?</string>
<key>UIRequiresPersistentWiFi</key>
<false />
<key>UIPrerenderedIcon</key>
<false />
<key>UIStatusBarHidden</key>
<false />
<key>LSApplicationQueriesSchemes</key>
<array>
<string>fb</string>
<string>fbapi</string>
<string>fbauth2</string>
<string>fbshareextension</string>
<string>fb-messenger-api</string>
<string>twitter</string>
<string>instagram</string>
<string>comgooglemaps</string>
<string>${id}</string>
</array>
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLName</key>
<!-- same as ti:app/id -->
<string>${id}</string>
<key>CFBundleURLSchemes</key>
<array>
<!-- your custom scheme -->
<string>${id}</string>
<!-- same as 'fb' plus ti:app/property[name=ti.facebook.appid] -->
<!--<string>fb123456789</string>-->
</array>
</dict>
</array>
</dict>
</plist>
</ios>
<android
xmlns:android="http://schemas.android.com/apk/res/android">
<manifest
xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="100060000">
<application android:debuggable="true" android:icon="@drawable/appicon" android:label="${name}" android:largeHeap="true" android:screenOrientation="portrait" android:theme="@style/turbo_theme"></application>
</manifest>
</android>
<modules></modules>
<deployment-targets>
<target device="android">true</target>
<target device="ipad">true</target>
<target device="iphone">true</target>
</deployment-targets>
<sdk-version>9.2.2.GA</sdk-version>
<plugins>
<plugin version="1.0">ti.alloy</plugin>
<plugin version="1.0">turbo</plugin>
</plugins>
</ti:app>