-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
tiapp.xml
80 lines (77 loc) · 2.86 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
<?xml version="1.0" encoding="UTF-8"?>
<ti:app xmlns:ti="http://ti.appcelerator.org">
<id>com.appcelerator.sample.hyperloop</id>
<name>Hyperloop_Sample</name>
<version>5.0.0</version>
<publisher>TiDev</publisher>
<url>http://www.tidev.io</url>
<description>This app demonstrates Hyperloop</description>
<copyright>2022 by TiDev, Inc.</copyright>
<icon>appicon.png</icon>
<!-- Change to true and remove the <application> tag to select Theme.AppCompat.NoTitleBar -->
<navbar-hidden>false</navbar-hidden>
<!-- Change to true and remove the <application> tag to select Theme.AppCompat.NoTitleBar.Fullscreen -->
<fullscreen>false</fullscreen>
<analytics>false</analytics>
<guid>11111111-1111-1111-1111-111111111111</guid>
<property name="ti.ui.defaultunit" type="string">dp</property>
<property name="run-on-main-thread" type="bool">true</property>
<transpile>true</transpile>
<ios>
<default-background-color>#c7182c</default-background-color>
<enable-launch-screen-storyboard>true</enable-launch-screen-storyboard>
<use-jscore-framework>true</use-jscore-framework>
<plist>
<dict>
<key>UIUserInterfaceStyle</key>
<string>Light</string>
<key>UISupportedInterfaceOrientations~iphone</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
</array>
<key>UIStatusBarStyle</key>
<string>UIStatusBarStyleLightContent</string>
<key>NSLocationWhenInUseUsageDescription</key>
<string>Can we use your location to detect iBeacons?</string>
<key>NSLocationAlwaysUsageDescription</key>
<string>Can we use your location to detect iBeacons in the background?</string>
<!-- iOS 11+ -->
<key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
<string>Can we use your location to detect iBeacons in the background?</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLName</key>
<string>com.appcelerator.sample.hyperloop</string>
<key>CFBundleURLSchemes</key>
<array>
<string>hyperloop</string>
</array>
</dict>
</array>
</dict>
</plist>
</ios>
<android xmlns:android="http://schemas.android.com/apk/res/android">
<manifest>
<application android:theme="@style/appcelerator" android:icon="@mipmap/ic_launcher" android:roundIcon="@mipmap/ic_launcher_round"/>
</manifest>
</android>
<modules>
<!-- Download the latest version from https://github.com/appcelerator-modules/hyperloop-builds/releases -->
<module version="7.0.6">hyperloop</module>
</modules>
<deployment-targets>
<target device="android">true</target>
<target device="ipad">true</target>
<target device="iphone">true</target>
</deployment-targets>
<sdk-version>12.2.1.GA</sdk-version>
<plugins>
<plugin version="1.0">ti.alloy</plugin>
</plugins>
</ti:app>