-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.xml
31 lines (22 loc) · 1.23 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
<?xml version="1.0" encoding="UTF-8" ?>
<!--
The widget element must be the root of your XML document - it lets us know that you are following the W3C specification. When using PhoneGap Build, ensure you have the following attributes set on your widget element
id: the unique identifier for your application. To support all supported platforms, this must be reverse-domain name style (e.g. com.yourcompany.yourapp)
version: for best results, use a major/minor/patch style version, with three numbers, such as 0.0.1
versionCode: (optional) when building for Android, you can set the versionCode by specifying it in your config.xml. -->
<widget xmlns = "http://www.w3.org/ns/widgets"
xmlns:gap = "http://phonegap.com/ns/1.0"
id = "com.phonegap.test"
versionCode = "10"
version = "0.0.2" >
<!-- versionCode is optional and Android only -->
<name>PhoneGap Example</name>
<description>
An example for phonegap build docs.
</description>
<author href="http://joekincognito.com" email="[email protected]">
Fake Name
</author>
<!-- We will include the Barcode plugin as an example -->
<gap:plugin name="com.phonegap.plugins.barcodescanner" />
</widget>