forked from ronaldpk/Share
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
36 lines (25 loc) · 1 KB
/
plugin.xml
File metadata and controls
36 lines (25 loc) · 1 KB
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
35
36
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
id="com.contentecontent.cordova.plugins.share"
version="1.0.1">
<name>Share</name>
<description>Send message (subject, text, image) to Android's native share dialog</description>
<keywords>share, image, android</keywords>
<license>LGPL v.3</license>
<author>Ronald Klip (github.com/RonaldPK)</author>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<!-- ios -->
<platform name="android">
<config-file target="config.xml" parent="/*">
<feature name="Share">
<param name="android-package" value="com.contentecontent.cordova.plugins.share.Share"/>
</feature>
</config-file>
<js-module src="www/share.js" name="Share">
<clobbers target="plugins.share" />
</js-module>
<source-file src="src/android/Share.java" target-dir="src/com/contentecontent/cordova/plugins/share" />
</platform>
</plugin>