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

Commit 03855ec

Browse files
#153 Ios updated google framework
1 parent ebe79e4 commit 03855ec

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

Diff for: README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ To get your iOS API key, follow Step 1 of [this guide](https://developers.google
4141
This `GoogleService-Info.plist` file contains the `REVERSED_CLIENT_ID` you'll need during installation.
4242

4343
### Android
44-
To configure Android, follow Step 2 (Get a configuration file) of [this guide](https://developers.google.com/identity/sign-in/android/start). Once Google Sign-In is enabled Google will automatically create necessary credentials in Developper Console. There is no need to add the generated google-services.json file into your cordova project.
44+
To configure Android, follow Step 2 (Get a configuration file) of [this guide](https://developers.google.com/identity/sign-in/android/start). Once Google Sign-In is enabled Google will automatically create necessary credentials in Developer Console. There is no need to add the generated google-services.json file into your cordova project.
4545

4646
Make sure you execute the `keytool` steps as well or authentication will fail.
4747

@@ -185,6 +185,8 @@ 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.6: Updated iOS GoogleSignIn SDK to 2.4.0. Thx #153!
189+
4.0.5: Fixed a broken import on iOS
188190
4.0.4: Using framework tags again for Android.
189191
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.
190192
4.0.1: Login on Android would crash the app if `isAvailable` was invoked beforehand.

Diff for: package.json

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

Diff for: plugin.xml

+4-5
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.5">
5+
version="4.0.6">
66

77
<name>Google+</name>
88

@@ -105,17 +105,16 @@
105105

106106
<!-- Google frameworks -->
107107
<framework src="src/ios/libs/GoogleOpenSource.framework" custom="true" />
108+
<!-- Downloaded here: https://developers.google.com/identity/sign-in/ios/sdk/ -->
108109
<framework src="src/ios/libs/GoogleSignIn.framework" custom="true" />
109110

110111
<!-- System frameworks -->
111112
<framework src="AddressBook.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" />-->
117114
<framework src="StoreKit.framework" weak="true" />
118115
<framework src="SystemConfiguration.framework" weak="true" />
116+
<framework src="libz.tbd" weak="true" />
117+
<framework src="libz.dylib" weak="true" />
119118

120119
</platform>
121120

0 commit comments

Comments
 (0)