forked from cordova-misc/cordova-webintent
-
Notifications
You must be signed in to change notification settings - Fork 25
/
plugin.xml
25 lines (21 loc) · 889 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://cordova.apache.org/ns/plugins/1.0" id="com.virtualartifacts.webintent"
version="1.0.0">
<name>WebIntent</name>
<description>Web intents for Cordova</description>
<license>MIT</license>
<keywords>cordova, webintent</keywords>
<js-module src="www/webintent.js" name="WebIntent">
<clobbers target="WebIntent" />
</js-module>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="WebIntent" >
<param name="android-package" value="com.borismus.webintent.WebIntent"/>
<param name="onload" value="true" />
</feature>
</config-file>
<source-file src="src/android/WebIntent.java" target-dir="src/com/borismus/webintent" />
</platform>
</plugin>