Skip to content
This repository was archived by the owner on May 30, 2023. It is now read-only.

Commit 2ded532

Browse files
#147 Android fwk tags
1 parent 3ae2d02 commit 2ded532

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

Diff for: README.md

+1
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,7 @@ window.plugins.googleplus.disconnect(
185185
- A: On Android you need to execute the `keytool` steps, see the installation instructions for details.
186186

187187
## 8. Changelog
188+
4.0.4: Using framework tags again for Android.
188189
4.0.3: On iOS `isAvailable` always returns try since that should be fine with the new Google SignIn framework. Re-added imageUrl to the result of SignIn on iOS.
189190
4.0.1: Login on Android would crash the app if `isAvailable` was invoked beforehand.
190191
4.0.0: Removed the need for `iosApiKey`, reverted Android to Google playservices framework for wider compatibility, documented scopes feature a bit.

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "4.0.3",
2+
"version": "4.0.4",
33
"name": "cordova-plugin-googleplus",
44
"cordova_name": "Google+",
55
"description": "Use your Google account to authenticate with the app.",

Diff for: plugin.xml

+9-9
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
33
xmlns:android="http://schemas.android.com/apk/res/android"
44
id="cordova-plugin-googleplus"
5-
version="4.0.3">
5+
version="4.0.4">
66

77
<name>Google+</name>
88

@@ -30,9 +30,9 @@
3030
<platform name="android">
3131

3232
<!-- these give a lot of peeps trouble, esp on build.phonegap.com, so not using them -->
33-
<!--<framework src="com.google.android.gms:play-services-plus:+" />-->
34-
<!--<framework src="com.google.android.gms:play-services-identity:+" />-->
35-
<dependency id="cordova-plugin-googleplayservices" />
33+
<framework src="com.google.android.gms:play-services-plus:+" />
34+
<framework src="com.google.android.gms:play-services-identity:+" />
35+
<!--<dependency id="cordova-plugin-googleplayservices" />-->
3636

3737
<config-file target="res/xml/config.xml" parent="/*">
3838
<feature name="GooglePlus">
@@ -104,16 +104,16 @@
104104
</config-file>
105105

106106
<!-- Google frameworks -->
107-
<framework src="src/ios/libs/GoogleOpenSource.framework" custom="true" />
107+
<!--<framework src="src/ios/libs/GoogleOpenSource.framework" custom="true" />-->
108108
<framework src="src/ios/libs/GoogleSignIn.framework" custom="true" />
109109

110110
<!-- System frameworks -->
111111
<framework src="AddressBook.framework" weak="true" />
112-
<framework src="CoreMotion.framework" weak="true" />
112+
<!--<framework src="CoreMotion.framework" weak="true" />-->
113113
<framework src="CoreText.framework" weak="true" />
114-
<framework src="CoreLocation.framework" weak="true" />
115-
<framework src="MediaPlayer.framework" weak="true" />
116-
<framework src="Security.framework" weak="true" />
114+
<!--<framework src="CoreLocation.framework" weak="true" />-->
115+
<!--<framework src="MediaPlayer.framework" weak="true" />-->
116+
<!--<framework src="Security.framework" weak="true" />-->
117117
<framework src="StoreKit.framework" weak="true" />
118118
<framework src="SystemConfiguration.framework" weak="true" />
119119

0 commit comments

Comments
 (0)