This repository has been archived by the owner on Jul 14, 2021. It is now read-only.
forked from opentraildata/OpenTrails-Mobile
-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.xml
69 lines (48 loc) · 2.85 KB
/
config.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
<?xml version='1.0' encoding='utf-8'?>
<widget id="com.trailheadlabs.opentrails" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0">
<preference name="phonegap-version" value="3.6.3" />
<preference name="orientation" value="portrait" />
<name>OpenTrails</name>
<description>
A trail navigation application built on the OpenTrails data standard.
</description>
<icon src="icon.png" />
<icon src="www/res/icons/icon-60.png" gap:platform="ios" width="60" height="60" />
<icon src="www/res/icons/icon-60@2x.png" gap:platform="ios" width="120" height="120" />
<icon src="www/res/icons/icon-76.png" gap:platform="ios" width="76" height="76" />
<icon src="www/res/icons/icon-76@2x.png" gap:platform="ios" width="152" height="152" />
<icon src="www/res/icons/icon-small.png" gap:platform="ios" width="29" height="29" />
<icon src="www/res/icons/icon-small@2x.png" gap:platform="ios" width="58" height="58" />
<icon src="www/res/icons/icon-40.png" gap:platform="ios" width="40" height="40" />
<icon src="www/res/icons/icon-40@2x.png" gap:platform="ios" width="80" height="80" />
<icon src="www/res/icons/icon.png" gap:platform="ios" width="57" height="57" />
<icon src="www/res/icons/icon@2x.png" gap:platform="ios" width="114" height="114" />
<icon src="www/res/icons/icon-72.png" gap:platform="ios" width="72" height="72" />
<icon src="www/res/icons/icon-72@2x.png" gap:platform="ios" width="144" height="144" />
<icon src="www/res/icons/icon-small.png" gap:platform="ios" width="29" height="29" />
<icon src="www/res/icons/icon-small@2x.png" gap:platform="ios" width="58" height="58" />
<icon src="www/res/icons/icon-50.png" gap:platform="ios" width="50" height="50" />
<icon src="www/res/icons/icon-50@2x.png" gap:platform="ios" width="100" height="100" />
<icon src="www/res/icons/icon-50@2x.png" gap:platform="ios" width="100" height="100" />
<icon src="www/res/icons/icon-120.png" gap:platform="ios" width="120" height="120" />
<author email="jereme@trailheadlabs.com" href="http://www.trailheadlabs.com">
Trailhead Labs
</author>
<preference name="DisallowOverscroll" value="true" />
<gap:platforms>
<gap:platform name="ios" minVersion="3.2" />
</gap:platforms>
<gap:config-file platform="ios" parent="NSLocationAlwaysUsageDescription" overwrite="false">
<array>
<string>Allow GPS</string>
</array>
</gap:config-file>
<gap:plugin name="org.apache.cordova.file"/>
<gap:plugin name="org.apache.cordova.file-transfer"/>
<gap:plugin name="org.apache.cordova.dialogs"/>
<gap:plugin name="org.apache.cordova.geolocation" version="0.3.10" />
<gap:plugin name="org.apache.cordova.splashscreen" />
<gap:plugin name="org.apache.cordova.inappbrowser" />
<gap:plugin name="com.ohh2ahh.plugins.appavailability" />
<access origin="*" subdomains="true" />
</widget>