I'm trying to implement One Tap sign-in with Google. Now when I need to sign out my a user the docs say that:
When a user signs out of your app, call the One Tap client's signOut() method.
So we have to call SignInClient#signOut() method. On the other hand, because I want to sign in with Google, I found another method called GoogleSignInClient#signOut(). I'm very confused about which method I should call to have a correct sign-out.
I also felt confused when working on Google Sign-In.
Now, If you only want to sign the user out of One Tap, use
SignInClient.signOut()
, this keeps their Google Account signed in for other features in your app that might need it.And if you want to sign the user out of their entire Google Account across your app, use
GoogleSignInClient.signOut()
, this includes One Tap functionality.[Note : You can call both methods together if you want to sign the user out of everything (One Tap and Google Account). Remember, SignInClient manages One Tap sessions, while GoogleSignInClient manages Google Account connections.]
Hopefully, this clarifies the difference and helps you choose the correct sign-out method for your scenario!