-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathplugin.xml
34 lines (25 loc) · 991 Bytes
/
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
30
31
32
33
34
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="com.webcraft.mobiledata"
version="1.0.0">
<name>Mobile Data Controls</name>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<description>This plugin set / gets the Mobile data state.</description>
<author>Webcraft</author>
<keywords></keywords>
<license>CC</license>
<js-module src="www/mobiledata.js" name="mobiledata">
<clobbers target="window.mobiledata" />
</js-module>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="mobiledata" >
<param name="android-package" value="com.webcraft.mobiledata.mobiledata"/>
</feature>
</config-file>
<source-file src="src/android/mobiledata.java" target-dir="src/com/webcraft/mobiledata" />
</platform>
</plugin>