forked from EddyVerbruggen/cordova-plugin-googleplus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
executable file
·122 lines (98 loc) · 4.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
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="cordova-plugin-googleplus"
version="4.0.3">
<name>Google+</name>
<description>Use your Google account to authenticate with the app.</description>
<author>Eddy Verbruggen</author>
<license>MIT</license>
<keywords>Google, Google+, GooglePlus, Google Plus, Google Login, Login, OAuth</keywords>
<repo>https://github.com/EddyVerbruggen/cordova-plugin-googleplus.git</repo>
<issue>https://github.com/EddyVerbruggen/cordova-plugin-googleplus/issues</issue>
<engines>
<engine name="cordova" version=">=3.3.0"/>
</engines>
<js-module src="www/GooglePlus.js" name="GooglePlus">
<clobbers target="window.plugins.googleplus" />
</js-module>
<!-- android -->
<platform name="android">
<!-- these give a lot of peeps trouble, esp on build.phonegap.com, so not using them -->
<!--<framework src="com.google.android.gms:play-services-plus:+" />-->
<!--<framework src="com.google.android.gms:play-services-identity:+" />-->
<dependency id="cordova-plugin-googleplayservices" />
<config-file target="res/xml/config.xml" parent="/*">
<feature name="GooglePlus">
<param name="android-package" value="nl.xservices.plugins.GooglePlus" />
<param name="onload" value="true" />
</feature>
<access origin="https://accounts.google.com/*" />
</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>
<source-file src="src/android/GooglePlus.java" target-dir="src/nl/xservices/plugins"/>
</platform>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="GooglePlus">
<param name="ios-package" value="GooglePlus"/>
<param name="onload" value="true" />
</feature>
<access origin="https://accounts.google.com/*" />
</config-file>
<header-file src="src/ios/GooglePlus.h"/>
<source-file src="src/ios/GooglePlus.m"/>
<preference name="REVERSED_CLIENT_ID"/>
<config-file target="*-Info.plist" parent="CFBundleURLTypes">
<array>
<dict>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleURLName</key>
<string>$PACKAGE_NAME</string>
<key>CFBundleURLSchemes</key>
<array>
<string>$PACKAGE_NAME</string>
</array>
</dict>
<dict>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleURLName</key>
<string>REVERSED_CLIENT_ID</string>
<key>CFBundleURLSchemes</key>
<array>
<string>$REVERSED_CLIENT_ID</string>
</array>
</dict>
</array>
</config-file>
<!-- iOS9 whitelisting -->
<config-file target="*-Info.plist" parent="LSApplicationQueriesSchemes">
<array>
<string>$PACKAGE_NAME</string>
<string>$REVERSED_CLIENT_ID</string>
<string>com-google-gidconsent</string>
<string>com-google-gidconsent-google</string>
<string>com.google.gppconsent.2.4.0</string>
<string>com.google.gppconsent.2.4.1</string>
</array>
</config-file>
<!-- Google frameworks -->
<framework src="src/ios/libs/GoogleOpenSource.framework" custom="true" />
<framework src="src/ios/libs/GoogleSignIn.framework" custom="true" />
<!-- System frameworks -->
<framework src="AddressBook.framework" weak="true" />
<framework src="CoreMotion.framework" weak="true" />
<framework src="CoreText.framework" weak="true" />
<framework src="CoreLocation.framework" weak="true" />
<framework src="MediaPlayer.framework" weak="true" />
<framework src="Security.framework" weak="true" />
<framework src="StoreKit.framework" weak="true" />
<framework src="SystemConfiguration.framework" weak="true" />
</platform>
</plugin>