forked from cesilva/cordova-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathplugin.xml
More file actions
30 lines (26 loc) · 1.03 KB
/
plugin.xml
File metadata and controls
30 lines (26 loc) · 1.03 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="cordova-arp-cache-fetch"
version="0.3.2">
<name>ARP Cache</name>
<description>Fetch ARP Cache in Android</description>
<license>MIT</license>
<keywords></keywords>
<repo>https://github.com/arvindr21/cordova-android-arp-cache.git</repo>
<issue>https://github.com/arvindr21/cordova-android-arp-cache/issues</issue>
<!-- android -->
<platform name="android">
<js-module src="www/arp.js" name="arp">
<runs/>
<!-- This is the window variable name you want, like window.ARP -->
<clobbers target="ARP" />
</js-module>
<config-file target="res/xml/config.xml" parent="/*">
<feature name="ARP">
<param name="android-package" value="com.arvindr21.ARP" />
<param name="onload" value="true" />
</feature>
</config-file>
<source-file src="src/android/com/arvindr21/ARP.java" target-dir="src/com/arvindr21/" />
</platform>
</plugin>