-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
29 lines (28 loc) · 1.11 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
<?xml version="1.0" encoding="utf-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="cordova-plugin-mailcore2" version="0.1.3">
<name>MailCore2</name>
<description>Cordova plugin that exposes the interface of mailcore2</description>
<license>Apache 2.0</license>
<keywords>cordova,smtp,imap,mailcore2,email</keywords>
<repo>https://github.com/CWBudde/cordova-plugin-mailcore2.git</repo>
<js-module src="www/mailcore2.js" name="mailcore2">
<clobbers target="mailcore2" />
</js-module>
<engines>
<engine name="cordova" version=">=6.0.0" />
<engine name="cordova-ios" version=">=4.0.0" />
</engines>
<platform name="ios">
<config-file target="config.xml" parent="/widget">
<feature name="MailCore2">
<param name="ios-package" value="CDVMailCore2" />
</feature>
</config-file>
<framework src="CFNetwork.framework" />
<framework src="Security.framework" />
<framework src="mailcore2-ios" type="podspec" spec="~> 0.6.4"/>
<header-file src="src/ios/CDVMailCore2.h"/>
<source-file src="src/ios/CDVMailCore2.m"/>
</platform>
</plugin>