Sign in to multiple accounts at once - Android

vijaypoco6

Regular Member
Joined
Jun 5, 2025
Messages
231
Reaction score
67
I have one app which have google sign in

I do logout but it always sign in to default acct

I clear cache and storage from setting still that option not coming

any work around tha reinstalling whole app
 
Okay so that's a weird one. Usually clearing cache and data does the trick. Since it's still automatically signing in with the default account even after that sounds like the authentication token might be stored somewhere else. Before you reinstall try this. Go to your Google account settings on your phone not just in the app. Look for "Connected apps" or "Third-party apps" something like that. Find your app in that list and remove its access to your Google account. Maybe that'll force it to ask you again next time you open it. Worth a shot right?
 
I have one app which have google sign in

I do logout but it always sign in to default acct

I clear cache and storage from setting still that option not coming

any work around tha reinstalling whole app
Try removing the default Google acct from device settings > Google > Accts > remove acct. Then open app, it should prompt sign-in. Use "Add another acct" to pick non-default. No need to reinstall.
 
Try removing the default Google acct from device settings > Google > Accts > remove acct. Then open app, it should prompt sign-in. Use "Add another acct" to pick non-default. No need to reinstall.
that also not working
 
Call both signOut and revokeAccess, then disable auto-select in your sign-in request:

client.signOut().addOnCompleteListener(t -> client.revokeAccess());
BeginSignInRequest.builder()

.setAutoSelectEnabled(false)
.build();
 
Back
Top