Open luk-ryn opened 3 years ago
I am also facing this issue for android only any solution to this ?
@luk-ryn one solution I found is to signout first and then sign in for android platforms
@lakshjn can you show that part of code? I have this problem too and i tried so much event sign out, I wnat to know how you call sign out method in your code.
@aryanasp Hi, I dont have that codebase with me but what I did was if user is logged in I maintain a flag and if user wants to login again I call coroutine which logout current user then wait for callback or some seconds(dont remember) then call sign in again.
For me issue was solved when I added GoogleSignIn.DefaultInstance.SignOut();
call for the same instance right after signIn. Hope this helps someone:
var signInUser = await GoogleSignIn.DefaultInstance.SignIn();
GoogleSignIn.DefaultInstance.SignOut();
For me issue was solved when I added
GoogleSignIn.DefaultInstance.SignOut();
call for the same instance right after signIn. Hope this helps someone:var signInUser = await GoogleSignIn.DefaultInstance.SignIn(); GoogleSignIn.DefaultInstance.SignOut();
Thanks! It works perfectly
For me issue was solved when I added
GoogleSignIn.DefaultInstance.SignOut();
call for the same instance right after signIn. Hope this helps someone:var signInUser = await GoogleSignIn.DefaultInstance.SignIn(); GoogleSignIn.DefaultInstance.SignOut();
Great! IT WORKS! Thanks.
While I sign in and log out I can't see anymore possibility to pick account. Is it possible to force account selection each time ?