From acaaf793db04ecd4fe71af724acef29fca2e4e34 Mon Sep 17 00:00:00 2001 From: Luke Zbihlyj Date: Mon, 10 Feb 2020 13:25:26 -0800 Subject: [PATCH 1/6] Update iOS pod to >= 5.0.0 and apply migrations for native plugin code. --- .../Editor/GoogleSignInDependencies.xml | 2 +- .../Assets/Plugins/iOS/GoogleSignIn/GoogleSignIn.h | 2 +- .../Assets/Plugins/iOS/GoogleSignIn/GoogleSignIn.mm | 5 +---- .../iOS/GoogleSignIn/GoogleSignInAppController.mm | 13 +++---------- 4 files changed, 6 insertions(+), 16 deletions(-) diff --git a/GoogleSignInPlugin/Assets/GoogleSignIn/Editor/GoogleSignInDependencies.xml b/GoogleSignInPlugin/Assets/GoogleSignIn/Editor/GoogleSignInDependencies.xml index 625d2e51..4889a130 100644 --- a/GoogleSignInPlugin/Assets/GoogleSignIn/Editor/GoogleSignInDependencies.xml +++ b/GoogleSignInPlugin/Assets/GoogleSignIn/Editor/GoogleSignInDependencies.xml @@ -12,7 +12,7 @@ - diff --git a/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignIn.h b/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignIn.h index 5e77bc10..2a70d092 100644 --- a/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignIn.h +++ b/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignIn.h @@ -15,6 +15,6 @@ */ #import @interface GoogleSignInHandler - : NSObject + : UIViewController @end diff --git a/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignIn.mm b/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignIn.mm index 9b82a370..8699a7de 100644 --- a/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignIn.mm +++ b/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignIn.mm @@ -105,9 +105,6 @@ - (void)signIn:(GIDSignIn *)signIn case kGIDSignInErrorCodeKeychain: currentResult_->result_code = kStatusCodeInternalError; break; - case kGIDSignInErrorCodeNoSignInHandlersInstalled: - currentResult_->result_code = kStatusCodeDeveloperError; - break; case kGIDSignInErrorCodeHasNoAuthInKeychain: currentResult_->result_code = kStatusCodeError; break; @@ -239,7 +236,7 @@ bool GoogleSignIn_Configure(void *unused, bool useGameSignIn, void *GoogleSignIn_SignInSilently() { SignInResult *result = startSignIn(); if (!result) { - [[GIDSignIn sharedInstance] signInSilently]; + [[GIDSignIn sharedInstance] restorePreviousSignIn]; result = currentResult_.get(); } return result; diff --git a/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignInAppController.mm b/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignInAppController.mm index 33631489..2c0c0840 100644 --- a/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignInAppController.mm +++ b/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignInAppController.mm @@ -75,7 +75,7 @@ - (BOOL)GoogleSignInAppController:(UIApplication *)application // Setup the Sign-In instance. GIDSignIn *signIn = [GIDSignIn sharedInstance]; signIn.clientID = clientId; - signIn.uiDelegate = gsiHandler; + signIn.presentingViewController = gsiHandler; signIn.delegate = gsiHandler; // looks like it's just calling itself, but the implementations were swapped @@ -96,9 +96,7 @@ - (BOOL)GoogleSignInAppController:(UIApplication *)application sourceApplication:sourceApplication annotation:annotation]; - return [[GIDSignIn sharedInstance] handleURL:url - sourceApplication:sourceApplication - annotation:annotation] || + return [[GIDSignIn sharedInstance] handleURL:url] || handled; } @@ -112,12 +110,7 @@ - (BOOL)GoogleSignInAppController:(UIApplication *)app BOOL handled = [self GoogleSignInAppController:app openURL:url options:options]; - return [[GIDSignIn sharedInstance] - handleURL:url - sourceApplication: - options[UIApplicationOpenURLOptionsSourceApplicationKey] - annotation: - options[UIApplicationOpenURLOptionsAnnotationKey]] || + return [[GIDSignIn sharedInstance] handleURL:url] || handled; } From 52e27e03498f50a8285f15ca1020e1e3885b6367 Mon Sep 17 00:00:00 2001 From: Luke Zbihlyj Date: Tue, 11 Feb 2020 12:22:10 -0800 Subject: [PATCH 2/6] Fix an issue with the view controller not being set correctly. --- .../Assets/Plugins/iOS/.DS_Store | Bin 0 -> 6148 bytes .../Plugins/iOS/GoogleSignIn/GoogleSignIn.h | 2 +- .../iOS/GoogleSignIn/GoogleSignIn.h.meta | 41 +++++++++--------- .../Plugins/iOS/GoogleSignIn/GoogleSignIn.mm | 2 + .../iOS/GoogleSignIn/GoogleSignIn.mm.meta | 41 +++++++++--------- .../GoogleSignIn/GoogleSignInAppController.mm | 1 - .../GoogleSignInAppController.mm.meta | 20 ++++++--- 7 files changed, 57 insertions(+), 50 deletions(-) create mode 100644 GoogleSignInPlugin/Assets/Plugins/iOS/.DS_Store diff --git a/GoogleSignInPlugin/Assets/Plugins/iOS/.DS_Store b/GoogleSignInPlugin/Assets/Plugins/iOS/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..608455c49c030ad5b8205cbd32b9d4b683c0b6bf GIT binary patch literal 6148 zcmeHK%}T>S5T0$Trl{D1pvS#<>!A{VPC}>^@g_v{prQ#WH4wAXrUtE*yoSD!PvGk~ zv%4*p+M9@!nK1j!&d%(zU&2ln07SDNZ3EN*z(FM}Rk8U&Xqk;W$+;R7Y!>Y5fwS91Md;j!2cp1LF8I}cpkXqI( zj^G`QnHzreyJ@1*4#te~M|q6Q05iZ0%n<|jh;x?bXivNqW`G&^9R}!pkf?;7#loOI zI@;ZlC7;%o1{gMns&thQ^Jt+JmplRTS8TeBMz5wU{ROJ8w literal 0 HcmV?d00001 diff --git a/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignIn.h b/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignIn.h index 2a70d092..410f23db 100644 --- a/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignIn.h +++ b/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignIn.h @@ -15,6 +15,6 @@ */ #import @interface GoogleSignInHandler - : UIViewController + : NSObject @end diff --git a/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignIn.h.meta b/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignIn.h.meta index 25735784..91a04072 100644 --- a/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignIn.h.meta +++ b/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignIn.h.meta @@ -2,34 +2,33 @@ fileFormatVersion: 2 guid: 62c129704e1ec48179ba285e1af154b8 labels: - gvh -timeCreated: 1510357716 -licenseType: Pro PluginImporter: + externalObjects: {} serializedVersion: 2 iconMap: {} executionOrder: {} + defineConstraints: [] isPreloaded: 0 isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 platformData: - data: - first: - Any: - second: - enabled: 0 - settings: {} - data: - first: - Editor: Editor - second: - enabled: 0 - settings: - DefaultValueInitialized: true - data: - first: - iPhone: iOS - second: - enabled: 1 - settings: {} + - first: + Any: + second: + enabled: 0 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + - first: + iPhone: iOS + second: + enabled: 1 + settings: {} userData: assetBundleName: assetBundleVariant: diff --git a/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignIn.mm b/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignIn.mm index 8699a7de..063222e5 100644 --- a/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignIn.mm +++ b/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignIn.mm @@ -189,6 +189,8 @@ bool GoogleSignIn_Configure(void *unused, bool useGameSignIn, [NSString stringWithUTF8String:accountName]; } + [GIDSignIn sharedInstance].presentingViewController = UnityGetGLViewController(); + return !useGameSignIn; } diff --git a/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignIn.mm.meta b/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignIn.mm.meta index d33a9650..d2ff1296 100644 --- a/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignIn.mm.meta +++ b/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignIn.mm.meta @@ -2,34 +2,33 @@ fileFormatVersion: 2 guid: 521784ee6b2184e0e947a8fd1508afbc labels: - gvh -timeCreated: 1510357716 -licenseType: Pro PluginImporter: + externalObjects: {} serializedVersion: 2 iconMap: {} executionOrder: {} + defineConstraints: [] isPreloaded: 0 isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 platformData: - data: - first: - Any: - second: - enabled: 0 - settings: {} - data: - first: - Editor: Editor - second: - enabled: 0 - settings: - DefaultValueInitialized: true - data: - first: - iPhone: iOS - second: - enabled: 1 - settings: {} + - first: + Any: + second: + enabled: 0 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + - first: + iPhone: iOS + second: + enabled: 1 + settings: {} userData: assetBundleName: assetBundleVariant: diff --git a/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignInAppController.mm b/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignInAppController.mm index 2c0c0840..840aa5a5 100644 --- a/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignInAppController.mm +++ b/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignInAppController.mm @@ -75,7 +75,6 @@ - (BOOL)GoogleSignInAppController:(UIApplication *)application // Setup the Sign-In instance. GIDSignIn *signIn = [GIDSignIn sharedInstance]; signIn.clientID = clientId; - signIn.presentingViewController = gsiHandler; signIn.delegate = gsiHandler; // looks like it's just calling itself, but the implementations were swapped diff --git a/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignInAppController.mm.meta b/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignInAppController.mm.meta index 8e0a46a3..93ac9d09 100644 --- a/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignInAppController.mm.meta +++ b/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignInAppController.mm.meta @@ -2,23 +2,31 @@ fileFormatVersion: 2 guid: 50b2e1c9319e4446e9dbd9b183790472 labels: - gvh -timeCreated: 1490998272 -licenseType: Pro PluginImporter: - serializedVersion: 1 + externalObjects: {} + serializedVersion: 2 iconMap: {} executionOrder: {} + defineConstraints: [] isPreloaded: 0 isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 platformData: - Any: + - first: + Any: + second: enabled: 0 settings: {} - Editor: + - first: + Editor: Editor + second: enabled: 0 settings: DefaultValueInitialized: true - iOS: + - first: + iPhone: iOS + second: enabled: 1 settings: {} userData: From 48a6b891c7ffd20bfb50c9778e5ccfa01cbf121a Mon Sep 17 00:00:00 2001 From: Luke Zbihlyj Date: Tue, 11 Feb 2020 12:23:08 -0800 Subject: [PATCH 3/6] Fix an issue with the view controller not being set correctly. --- .../Assets/Plugins/iOS/GoogleSignIn/GoogleSignIn.h | 2 +- .../Assets/Plugins/iOS/GoogleSignIn/GoogleSignIn.mm | 7 +++---- .../iOS/GoogleSignIn/GoogleSignInAppController.mm | 12 ++---------- 3 files changed, 6 insertions(+), 15 deletions(-) diff --git a/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignIn.h b/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignIn.h index 5e77bc10..410f23db 100644 --- a/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignIn.h +++ b/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignIn.h @@ -15,6 +15,6 @@ */ #import @interface GoogleSignInHandler - : NSObject + : NSObject @end diff --git a/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignIn.mm b/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignIn.mm index 9b82a370..063222e5 100644 --- a/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignIn.mm +++ b/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignIn.mm @@ -105,9 +105,6 @@ - (void)signIn:(GIDSignIn *)signIn case kGIDSignInErrorCodeKeychain: currentResult_->result_code = kStatusCodeInternalError; break; - case kGIDSignInErrorCodeNoSignInHandlersInstalled: - currentResult_->result_code = kStatusCodeDeveloperError; - break; case kGIDSignInErrorCodeHasNoAuthInKeychain: currentResult_->result_code = kStatusCodeError; break; @@ -192,6 +189,8 @@ bool GoogleSignIn_Configure(void *unused, bool useGameSignIn, [NSString stringWithUTF8String:accountName]; } + [GIDSignIn sharedInstance].presentingViewController = UnityGetGLViewController(); + return !useGameSignIn; } @@ -239,7 +238,7 @@ bool GoogleSignIn_Configure(void *unused, bool useGameSignIn, void *GoogleSignIn_SignInSilently() { SignInResult *result = startSignIn(); if (!result) { - [[GIDSignIn sharedInstance] signInSilently]; + [[GIDSignIn sharedInstance] restorePreviousSignIn]; result = currentResult_.get(); } return result; diff --git a/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignInAppController.mm b/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignInAppController.mm index 33631489..840aa5a5 100644 --- a/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignInAppController.mm +++ b/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignInAppController.mm @@ -75,7 +75,6 @@ - (BOOL)GoogleSignInAppController:(UIApplication *)application // Setup the Sign-In instance. GIDSignIn *signIn = [GIDSignIn sharedInstance]; signIn.clientID = clientId; - signIn.uiDelegate = gsiHandler; signIn.delegate = gsiHandler; // looks like it's just calling itself, but the implementations were swapped @@ -96,9 +95,7 @@ - (BOOL)GoogleSignInAppController:(UIApplication *)application sourceApplication:sourceApplication annotation:annotation]; - return [[GIDSignIn sharedInstance] handleURL:url - sourceApplication:sourceApplication - annotation:annotation] || + return [[GIDSignIn sharedInstance] handleURL:url] || handled; } @@ -112,12 +109,7 @@ - (BOOL)GoogleSignInAppController:(UIApplication *)app BOOL handled = [self GoogleSignInAppController:app openURL:url options:options]; - return [[GIDSignIn sharedInstance] - handleURL:url - sourceApplication: - options[UIApplicationOpenURLOptionsSourceApplicationKey] - annotation: - options[UIApplicationOpenURLOptionsAnnotationKey]] || + return [[GIDSignIn sharedInstance] handleURL:url] || handled; } From 6051fa8351f603ebf8ade09143137de6c0249e0c Mon Sep 17 00:00:00 2001 From: Luke Zbihlyj Date: Tue, 11 Feb 2020 12:27:06 -0800 Subject: [PATCH 4/6] Remove this unnecessary file. --- GoogleSignInPlugin/Assets/Plugins/iOS/.DS_Store | Bin 6148 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 GoogleSignInPlugin/Assets/Plugins/iOS/.DS_Store diff --git a/GoogleSignInPlugin/Assets/Plugins/iOS/.DS_Store b/GoogleSignInPlugin/Assets/Plugins/iOS/.DS_Store deleted file mode 100644 index 608455c49c030ad5b8205cbd32b9d4b683c0b6bf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6148 zcmeHK%}T>S5T0$Trl{D1pvS#<>!A{VPC}>^@g_v{prQ#WH4wAXrUtE*yoSD!PvGk~ zv%4*p+M9@!nK1j!&d%(zU&2ln07SDNZ3EN*z(FM}Rk8U&Xqk;W$+;R7Y!>Y5fwS91Md;j!2cp1LF8I}cpkXqI( zj^G`QnHzreyJ@1*4#te~M|q6Q05iZ0%n<|jh;x?bXivNqW`G&^9R}!pkf?;7#loOI zI@;ZlC7;%o1{gMns&thQ^Jt+JmplRTS8TeBMz5wU{ROJ8w From cb3f705b2295cb110521cad44e96fb917c3ef7e7 Mon Sep 17 00:00:00 2001 From: Luke Zbihlyj Date: Tue, 11 Feb 2020 12:29:34 -0800 Subject: [PATCH 5/6] Revert meta files. --- .../iOS/GoogleSignIn/GoogleSignIn.h.meta | 41 ++++++++++--------- .../iOS/GoogleSignIn/GoogleSignIn.mm.meta | 41 ++++++++++--------- .../GoogleSignInAppController.mm.meta | 20 +++------ 3 files changed, 48 insertions(+), 54 deletions(-) diff --git a/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignIn.h.meta b/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignIn.h.meta index 91a04072..25735784 100644 --- a/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignIn.h.meta +++ b/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignIn.h.meta @@ -2,33 +2,34 @@ fileFormatVersion: 2 guid: 62c129704e1ec48179ba285e1af154b8 labels: - gvh +timeCreated: 1510357716 +licenseType: Pro PluginImporter: - externalObjects: {} serializedVersion: 2 iconMap: {} executionOrder: {} - defineConstraints: [] isPreloaded: 0 isOverridable: 0 - isExplicitlyReferenced: 0 - validateReferences: 1 platformData: - - first: - Any: - second: - enabled: 0 - settings: {} - - first: - Editor: Editor - second: - enabled: 0 - settings: - DefaultValueInitialized: true - - first: - iPhone: iOS - second: - enabled: 1 - settings: {} + data: + first: + Any: + second: + enabled: 0 + settings: {} + data: + first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + data: + first: + iPhone: iOS + second: + enabled: 1 + settings: {} userData: assetBundleName: assetBundleVariant: diff --git a/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignIn.mm.meta b/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignIn.mm.meta index d2ff1296..d33a9650 100644 --- a/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignIn.mm.meta +++ b/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignIn.mm.meta @@ -2,33 +2,34 @@ fileFormatVersion: 2 guid: 521784ee6b2184e0e947a8fd1508afbc labels: - gvh +timeCreated: 1510357716 +licenseType: Pro PluginImporter: - externalObjects: {} serializedVersion: 2 iconMap: {} executionOrder: {} - defineConstraints: [] isPreloaded: 0 isOverridable: 0 - isExplicitlyReferenced: 0 - validateReferences: 1 platformData: - - first: - Any: - second: - enabled: 0 - settings: {} - - first: - Editor: Editor - second: - enabled: 0 - settings: - DefaultValueInitialized: true - - first: - iPhone: iOS - second: - enabled: 1 - settings: {} + data: + first: + Any: + second: + enabled: 0 + settings: {} + data: + first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + data: + first: + iPhone: iOS + second: + enabled: 1 + settings: {} userData: assetBundleName: assetBundleVariant: diff --git a/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignInAppController.mm.meta b/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignInAppController.mm.meta index 93ac9d09..8e0a46a3 100644 --- a/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignInAppController.mm.meta +++ b/GoogleSignInPlugin/Assets/Plugins/iOS/GoogleSignIn/GoogleSignInAppController.mm.meta @@ -2,31 +2,23 @@ fileFormatVersion: 2 guid: 50b2e1c9319e4446e9dbd9b183790472 labels: - gvh +timeCreated: 1490998272 +licenseType: Pro PluginImporter: - externalObjects: {} - serializedVersion: 2 + serializedVersion: 1 iconMap: {} executionOrder: {} - defineConstraints: [] isPreloaded: 0 isOverridable: 0 - isExplicitlyReferenced: 0 - validateReferences: 1 platformData: - - first: - Any: - second: + Any: enabled: 0 settings: {} - - first: - Editor: Editor - second: + Editor: enabled: 0 settings: DefaultValueInitialized: true - - first: - iPhone: iOS - second: + iOS: enabled: 1 settings: {} userData: From 7af67e1c90cad42597c45168acba1da8b1426ae0 Mon Sep 17 00:00:00 2001 From: Luke Zbihlyj Date: Wed, 25 Aug 2021 18:13:18 -0700 Subject: [PATCH 6/6] Lock to ~> 5.0.0 because of the 6.0.0 release --- .../Assets/GoogleSignIn/Editor/GoogleSignInDependencies.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GoogleSignInPlugin/Assets/GoogleSignIn/Editor/GoogleSignInDependencies.xml b/GoogleSignInPlugin/Assets/GoogleSignIn/Editor/GoogleSignInDependencies.xml index 4889a130..900689e1 100644 --- a/GoogleSignInPlugin/Assets/GoogleSignIn/Editor/GoogleSignInDependencies.xml +++ b/GoogleSignInPlugin/Assets/GoogleSignIn/Editor/GoogleSignInDependencies.xml @@ -12,7 +12,7 @@ -