-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.xml
51 lines (41 loc) · 2.02 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
<?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.sql_data_store"
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>SQL Data Store</name>
<content src="index.htm"/>
<icon src="icon.png"/>
<description>
SQL Data Store
</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>