forked from napolitano/cordova-plugin-intent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
34 lines (34 loc) · 1.07 KB
/
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
32
33
34
<?xml version="1.0" encoding="UTF-8" ?>
<plugin
xmlns="http://www.phonegap.com/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="net.sgj0.cordova.plugin.intent"
version="0.1.7"
>
<name>IntentPlugin</name>
<description>Cordova Plugin for Android to access intent</description>
<license>MIT</license>
<repo>https://github.com/sgj0/cordova-plugin-intent</repo>
<issue>https://github.com/sgj0/cordova-plugin-intent/issues</issue>
<keywords>cordova,intent,share,send,android</keywords>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="IntentPlugin">
<param
name="android-package"
value="net.sgj0.cordova.plugin.intent.IntentPlugin"
/>
</feature>
</config-file>
<js-module src="www/android/intent.js" name="IntentPlugin">
<clobbers target="cordova.plugins.intent" />
</js-module>
<source-file
src="src/android/IntentPlugin.java"
target-dir="src/net/sgj0/cordova/plugin/intent"
/>
</platform>
</plugin>