forked from karandpr/cordova-plugin-android-rootbeer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
26 lines (24 loc) · 944 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="cordova-plugin-android-rootbeer"
version="1.0.0">
<name>RootBeer Library for Cordova</name>
<description></description>
<license>MIT</license>
<keywords></keywords>
<!-- android -->
<platform name="android">
<js-module src="www/plugin.js" name="plugin">
<runs/>
<clobbers target="cdvRootBeer" />
</js-module>
<config-file target="res/xml/config.xml" parent="/*">
<feature name="cdvRootBeer">
<param name="android-package" value="com.rb.cdvRootBeer" />
<param name="onload" value="true" />
</feature>
</config-file>
<source-file src="src/android/com/rb/cdvRootBeer.java" target-dir="src/com/rb/" />
<framework src="src/android/build-extras.gradle" custom="true" type="gradleReference" />
</platform>
</plugin>