Skip to content

Commit 08010fc

Browse files
committed
UPM package
1 parent f453f6c commit 08010fc

File tree

76 files changed

+138
-226
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

+138
-226
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.

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)