-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathplugin.xml
33 lines (29 loc) · 1.36 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
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="com.ccsoft.plugin.AndroidEmail"
version="0.2.0">
<engines>
<engine name="cordova-android" platform="android" version=">=3.0.0" />
</engines>
<name>AndroidEmail</name>
<description>Cordova plugin to retrieve Google account e-mail for Android devices. We rely on Google Play Services instead of asking user android.permission.GET_ACCOUNTS</description>
<author>CCSoft</author>
<repo>https://github.com/ccsoft/cordova-android-email/</repo>
<issue>https://github.com/ccsoft/cordova-android-email/issues</issue>
<license>Apache 2.0</license>
<keywords>phonegap,cordova,android,accounts,email,e-mail,google play services</keywords>
<js-module src="www/AndroidEmail.js" name="AndroidEmail">
<merges target="CC" />
</js-module>
<!-- android -->
<platform name="android">
<source-file src="src/android/AndroidEmail.java"
target-dir="src/com/ccsoft/plugin" />
<config-file target="res/xml/config.xml" parent="/*">
<feature name="AndroidEmail">
<param name="android-package" value="com.ccsoft.plugin.AndroidEmail" />
</feature>
</config-file>
<framework src="com.google.android.gms:play-services-identity:+" />
</platform>
</plugin>