-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathtiapp.xml
More file actions
executable file
·70 lines (70 loc) · 2.98 KB
/
tiapp.xml
File metadata and controls
executable file
·70 lines (70 loc) · 2.98 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<ti:app xmlns:ti="http://ti.appcelerator.org">
<id>com.appcelerator.sample.mapping</id>
<guid>11111111-1111-1111-1111-111111111111</guid>
<name>Geocoder</name>
<version>2.0.0</version>
<publisher>Appcelerator, Inc.</publisher>
<url>http://www.appcelerator.com</url>
<description>A cross platform sample application to geocode and reverse geocode locations.</description>
<copyright>2016 by Appcelerator, Inc.</copyright>
<icon>appicon.png</icon>
<fullscreen>false</fullscreen>
<navbar-hidden>false</navbar-hidden>
<analytics>true</analytics>
<property name="ti.ui.defaultunit" type="string">dp</property>
<property name="ti.version.range" type="string">>=5.2.2</property>
<ios>
<min-ios-ver>8.4</min-ios-ver>
<enable-launch-screen-storyboard>true</enable-launch-screen-storyboard>
<default-background-color>#C7172C</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>NSLocationWhenInUseUsageDescription</key>
<string>Geocode your location</string>
<key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
<string>Geocode your location</string>
</dict>
</plist>
</ios>
<android xmlns:android="http://schemas.android.com/apk/res/android">
<manifest>
<application android:theme="@style/appcelerator">
<meta-data android:name="com.google.android.maps.v2.API_KEY" android:value="AIzaSyBDuTWLdPRaKN2eTTQKVc-QDNdCS6RxzPM"/>
</application>
</manifest>
</android>
<modules>
<module platform="iphone">ti.map</module>
<module platform="android">ti.map</module>
</modules>
<deployment-targets>
<target device="iphone">true</target>
<target device="ipad">true</target>
<target device="android">true</target>
</deployment-targets>
<sdk-version>8.2.0.GA</sdk-version>
<plugins>
<plugin version="1.0">ti.alloy</plugin>
<plugin version="1.0">ti.version</plugin>
</plugins>
</ti:app>