forked from jcjee/email-composer
-
Notifications
You must be signed in to change notification settings - Fork 8
/
plugin.xml
63 lines (46 loc) · 2.03 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?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="com.jcjee.plugins.emailcomposer"
version="1.4.2">
<name>Email Composer with Attachments</name>
<description>
<p>Email Composer with Attachments</p>
<p>Email Composer with Attachments. Modified from the original Phonegap plugin
to accept multiple attachments</p>
</description>
<license>MIT</license>
<js-module src="www/EmailComposer.js" name="EmailComposer">
<clobbers target="EmailComposer" />
</js-module>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<!-- android -->
<platform name="android">
<!-- Cordova >= 3.0.0 -->
<config-file target="res/xml/config.xml" parent="/*">
<feature name="EmailComposer">
<param name="android-package" value="com.jcjee.plugins.EmailComposer" />
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="application">
<provider android:name="com.jcjee.plugins.EmailAttachmentProvider" android:authorities="$PACKAGE_NAME.emailcomposer.provider" android:exported="false"></provider>
</config-file>
<source-file src="src/android/EmailComposer.java" target-dir="src/com/jcjee/plugins" />
<source-file src="src/android/EmailAttachmentProvider.java" target-dir="src/com/jcjee/plugins" />
</platform>
<!-- ios -->
<platform name="ios">
<!-- Cordova >= 3.0.0 -->
<config-file target="config.xml" parent="/*">
<feature name="EmailComposer">
<param name="ios-package" value="EmailComposer" />
</feature>
</config-file>
<header-file src="src/ios/EmailComposer.h" />
<source-file src="src/ios/EmailComposer.m" />
<!-- system frameworks -->
<framework src="MessageUI.framework" weak="true" />
</platform>
</plugin>