-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
31 lines (22 loc) · 905 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="org.apache.cordova.alertlist"
version="0.1.0">
<name>AlertList</name>
<description>Cordova AlertList Plugin</description>
<license>Apache 2.0</license>
<keywords>cordova,alertlist</keywords>
<repo>https://github.com/juvs/cordova-plugin-alertlist.git</repo>
<!-- android -->
<platform name="android">
<js-module src="www/android/AlertList.js" name="AlertList">
<clobbers target="AlertList" />
</js-module>
<config-file target="res/xml/config.xml" parent="/*">
<feature name="AlertList" >
<param name="android-package" value="org.apache.cordova.alertlist.AlertList"/>
</feature>
</config-file>
<source-file src="src/android/AlertList.java" target-dir="src/org/apache/cordova/alertlist" />
</platform>
</plugin>