-
Notifications
You must be signed in to change notification settings - Fork 2
/
plugin.xml
29 lines (25 loc) · 1.03 KB
/
plugin.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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="cordova-plugin-country"
version="1.1.0">
<name>Country</name>
<description>This plugin gets the country from Android</description>
<author>Daniel Jackson</author>
<keywords>android, country</keywords>
<license>MIT</license>
<js-module src="www/country.js" name="Country">
<clobbers target="Country" />
</js-module>
<engines>
<engine name="cordova-android" version=">=3.0.0"/>
</engines>
<platform name="android">
<source-file src="src/com/cloakedninjas/cordova/plugins/Country.java" target-dir="src/com/cloakedninjas/cordova/plugins" />
<config-file target="res/xml/config.xml" parent="/*">
<feature name="Country" >
<param name="android-package" value="com.cloakedninjas.cordova.plugins.Country"/>
</feature>
</config-file>
</platform>
</plugin>