Skip to content

Commit 57a9a9a

Browse files
committed
UPM package + Update pod version
1 parent f453f6c commit 57a9a9a

File tree

76 files changed

+145
-228
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+145
-228
lines changed

CONTRIBUTING.md.meta

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

GoogleSignIn.asmdef

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"name": "GoogleSignin"
3+
}

GoogleSignIn.asmdef.meta

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
File renamed without changes.
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@
1212

1313
<!-- iOS Cocoapod dependencies can be specified by each iosPod element. -->
1414
<iosPods>
15-
<iosPod name="GoogleSignIn" version="~> 6.0.2" bitcodeEnabled="false"
16-
minTargetSdk="6.0">
15+
<iosPod name="GoogleSignIn" version="~> 6.2.4" bitcodeEnabled="false" minTargetSdk="6.0">
1716
</iosPod>
1817
</iosPods>
1918
</dependencies>

GoogleSignInPlugin/Assets/GoogleSignIn/Future.cs renamed to GoogleSignIn/Future.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,10 @@ internal Future(FutureAPIImpl<T> impl) {
7171
/// <param name="tcs">Tcs.</param>
7272
internal IEnumerator WaitForResult(TaskCompletionSource<T> tcs) {
7373
yield return new WaitUntil(() => !Pending);
74-
if (Status == GoogleSignInStatusCode.Canceled) {
74+
if (Status == GoogleSignInStatusCode.CANCELED) {
7575
tcs.SetCanceled();
76-
} else if (Status == GoogleSignInStatusCode.Success ||
77-
Status == GoogleSignInStatusCode.SuccessCached) {
76+
} else if (Status == GoogleSignInStatusCode.SUCCESS ||
77+
Status == GoogleSignInStatusCode.SUCCESS_CACHE) {
7878
tcs.SetResult(Result);
7979
} else {
8080
tcs.SetException(new GoogleSignIn.SignInException(Status));

0 commit comments

Comments
 (0)