-
Notifications
You must be signed in to change notification settings - Fork 15
/
plugin.xml
30 lines (23 loc) · 1004 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 xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="org.apache.cordova.home"
version="0.2.6">
<name>Android Home</name>
<description>Cordova Android Home Plugin</description>
<license>Apache 2.0</license>
<keywords>cordova,android,home</keywords>
<repo>https://github.com/ZhichengChen/cordova-plugin-android-home.git</repo>
<issue>https://github.com/ZhichengChen/cordova-plugin-android-home/issues</issue>
<js-module src="www/home.js" name="home">
<merges target="navigator.home" />
</js-module>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="Home">
<param name="android-package" value="org.apache.cordova.home.Home"/>
</feature>
</config-file>
<source-file src="src/android/Home.java" target-dir="src/org/apache/cordova/home" />
</platform>
</plugin>