forked from steve-jansen/cordova-ios-emailcomposer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
52 lines (40 loc) · 1.64 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="emailcomposer"
version="2.0.2">
<name>EmailComposer</name>
<description>
A Cordova plugin for composing new e-mail messages on iOS devices.
Supports HTML formatted messages and file attachments.
</description>
<info>
JavaScript/Mocha unit tests and XCode unit tests are availabe from the source
repository for EmailCompoer.
</info>
<author>Jesse MacFadyen; maintained by Steve Jansen (stevejansen_github@icloud.com)</author>
<license>The MIT License (MIT)</license>
<engines>
<engine name="cordova" version=">=2.7.0"/>
</engines>
<platform name="ios">
<!-- optional file needed for backwards compatability with version 1.0 of this plugin -->
<asset src="www/EmailComposer-Deprecated.js" target="plugins/EmailComposer-Deprecated.js" />
<!-- optional sample implementation of the plugin -->
<asset src="www/EmailComposer.html" target="examples/EmailComposer.html" />
<js-module src="EmailComposer.js" name="EmailComposer">
<runs />
</js-module>
<!-- Cordova >= 2.7 -->
<config-file target="config.xml" parent="/*">
<feature name="EmailComposer">
<param name="ios-package" value="EmailComposer" />
</feature>
</config-file>
<framework src="MessageUI.framework" />
<framework src="MobileCoreServices.framework" />
<header-file src="src/ios/EmailComposer.h" />
<source-file src="src/ios/EmailComposer.m" />
<header-file src="src/ios/NSData+Base64.h" />
<source-file src="src/ios/NSData+Base64.m" />
</platform>
</plugin>