Thaina / google-signin-unity

Google Sign-In API plugin for Unity game engine. Works with Android and iOS.
Other
32 stars 13 forks source link

SignInSilentlyAsync method behaves as a normal login. #14

Open SnowDINN opened 2 months ago

SnowDINN commented 2 months ago

GoogleSignIn.cs

public Task SignInSilentlyAsync() { var tcs = new TaskCompletionSource(); impl.SignIn().WaitForResultAsync(tcs).ContinueWith((task) => {}); return tcs.Task; }

I need to change the SignIn() method to SignInSilently().

Thaina commented 1 month ago

Should be fixed now