-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
47 lines (34 loc) · 1.65 KB
/
plugin.xml
File metadata and controls
47 lines (34 loc) · 1.65 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
37
38
39
40
41
42
43
44
45
46
47
<?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="cordova-plugin-gp"
version="2.3.0">
<name>Google Plus</name>
<description>Google Plus Cordova Plugin</description>
<license>MIT</license>
<repo>https://github.com/BlueFidelity/cordova-plugin-gp</repo>
<issue>https://github.com/BlueFidelity/cordova-plugin-gp/issues</issue>
<keywords>cordova,google,signin,login,oauth,identity,authentication,android</keywords>
<engines>
<engine name="cordova" version=">=7.1.0"/>
<engine name="cordova-android" version=">=6.3.0"/>
</engines>
<!-- android -->
<platform name="android">
<framework src="com.google.android.gms:play-services-auth:+" />
<framework src="com.google.android.gms:play-services-identity:+" />
<config-file target="res/xml/config.xml" parent="/*">
<feature name="GooglePlus">
<param name="android-package" value="com.bluefidelity.cordova.plugins.GooglePlus" />
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest">
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.USE_CREDENTIALS" />
</config-file>
<js-module src="www/android/GooglePlus.js" name="GooglePlus">
<clobbers target="GooglePlus" />
</js-module>
<source-file src="src/android/GooglePlus.java" target-dir="src/com/bluefidelity/cordova/plugins" />
</platform>
</plugin>