forked from FokkeZB/Tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtiapp.xml
94 lines (89 loc) · 3.21 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
<?xml version="1.0" encoding="UTF-8"?>
<ti:app xmlns:ti="http://ti.appcelerator.org">
<id>nl.fokkezb.tracker</id>
<name>Tracker</name>
<version>1.0</version>
<publisher>Fokke Zandbergen</publisher>
<url>http://fokkezb.nl/rwanda</url>
<description></description>
<copyright>Copyright 2016 Fokke Zandbergen</copyright>
<icon>appicon.png</icon>
<fullscreen>false</fullscreen>
<navbar-hidden>false</navbar-hidden>
<analytics>true</analytics>
<guid>9edae89e-a1ef-42c8-9b54-1344805042a9</guid>
<property name="ti.ui.defaultunit" type="string">dp</property>
<ios>
<!-- Minimum of iOS 8 so we don't need fallback Launch Images for older iPhones -->
<min-ios-ver>8.0</min-ios-ver>
<!-- Use the builtin Storyboard Launch File with DefaultIcon.png on a blue background -->
<enable-launch-screen-storyboard>true</enable-launch-screen-storyboard>
<default-background-color>#0054a6</default-background-color>
<plist>
<dict>
<key>UISupportedInterfaceOrientations~iphone</key>
<array>
<string>UIInterfaceOrientationPortrait</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>
<key>NSLocationAlwaysUsageDescription</key>
<string>Track your rides.</string>
<key>UIBackgroundModes</key>
<array>
<string>location</string>
</array>
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLName</key>
<string>nl.fokkezb.tracker</string>
<key>CFBundleURLSchemes</key>
<array>
<string>tracker</string>
</array>
</dict>
</array>
<key>CFBundleVersion</key>
<string>2</string>
</dict>
</plist>
</ios>
<android xmlns:android="http://schemas.android.com/apk/res/android">
<manifest android:versionCode="3">
<application android:theme="@style/tracker">
<!-- API key for nl.fokkezb.tracker and the Titanium development keystore -->
<meta-data android:name="com.google.android.maps.v2.API_KEY" android:value="AIzaSyAVtVxzmR1Anv4BBwjr-sI34Z0eccXW1Sc"/>
</application>
</manifest>
</android>
<modules>
<module platform="iphone">ti.map</module>
<module platform="android">ti.map</module>
<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.2.2.GA</sdk-version>
<plugins>
<plugin version="1.0">ti.alloy</plugin>
</plugins>
</ti:app>