-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathplugin.xml
More file actions
executable file
·31 lines (26 loc) · 941 Bytes
/
plugin.xml
File metadata and controls
executable file
·31 lines (26 loc) · 941 Bytes
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="monaca-plugin-webintent"
version="1.0.1">
<name>WebIntent</name>
<description>
This plugin allows starting another application on the device
</description>
<engines>
<engine name="cordova" version=">=2.9.0" />
</engines>
<license>MIT</license>
<js-module src="www/webintent.js" name="Webintent">
<clobbers target="plugins.webintent" />
</js-module>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="WebIntent">
<param name="android-package" value="mobi.monaca.framework.plugin.WebIntent"/>
</feature>
</config-file>
<source-file src="src/android/WebIntent.java" target-dir="src/mobi/monaca/framework/plugin" />
</platform>
</plugin>