-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
30 lines (23 loc) · 968 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
<?xml version='1.0' encoding='utf-8'?>
<plugin id="cordova-plugin-kavin" version="1.0.1"
xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android">
<name>Android Kavin Plugin</name>
<description>Android Kavin Plugin</description>
<license>Apache 2.0</license>
<keywords>android, kavin</keywords>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<js-module name="AndroidKavin" src="www/AndroidKavin.js">
<clobbers target="AndroidKavin" />
</js-module>
<platform name="android">
<config-file target="config.xml" parent="/*">
<feature name="AndroidKavin">
<param name="android-package" value="com.letsdosimple.AndroidKavin" />
</feature>
</config-file>
<source-file src="src/android/AndroidKavin.java" target-dir="src/com/letsdosimple/android-kavin" />
</platform>
</plugin>