-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.xml
More file actions
50 lines (46 loc) · 1.98 KB
/
Copy pathconfig.xml
File metadata and controls
50 lines (46 loc) · 1.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
<?xml version="1.0" encoding="UTF-8" ?>
<widget xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0" id="com.intel.sample_handbell" versionCode="1" version="0.0.1">
<!-- versionCode is optional and Android only, see the Setting Application Version
-->
<!-- section on this page http://developer.android.com/tools/publishing/versioning.html
-->
<!-- for more information regarding the use and purpose of the versionCode attribute
-->
<name>Compass</name>
<content src="index.html" />
<icon src="icon.png" />
<description>Compass is demo how to use PhoneGap compass API</description>
<author href="http://software.intel.com/html5">Intel Corporation</author>
<!-- leave out to get latest PhoneGap, otherwise specify a value
-->
<!-- <preference name="phonegap-version" value="2.0.0" />
-->
<!-- recommended for Android platform
-->
<preference name="orientation" value="portrait" />
<preference name="android-minSdkVersion" value="9" />
<!-- Android 2.3
-->
<!-- APIs used by this app (permission list presented to the user on install)
-->
<!-- If you do not want any permissions assigned to your app, use the
-->
<!-- following value="none" tag; your app will still require the INTERNET
-->
<!-- permission, because PhoneGap requires this.
-->
<preference name="permissions" value="none" />
<!-- to enable individual API permissions use the following examples
-->
<!--
<feature name="http://api.phonegap.com/1.0/battery"/>
<feature name="http://api.phonegap.com/1.0/camera"/>
<feature name="http://api.phonegap.com/1.0/contacts"/>
<feature name="http://api.phonegap.com/1.0/file"/>
<feature name="http://api.phonegap.com/1.0/geolocation"/>
<feature name="http://api.phonegap.com/1.0/media"/>
<feature name="http://api.phonegap.com/1.0/network"/>
<feature name="http://api.phonegap.com/1.0/notification"/>
<feature name="http://api.phonegap.com/1.0/device"/>
-->
</widget>