I've been using firebase auth in my app for a while. It was working fine. But now when I sign out from the app and try to sign in again, the account chooser doesn't show up. It directly signs in with the last used account. Is there a way to force the account chooser to show up after sign out?
The following steps should force the Google account chooser after sign out in Android Firebase Auth:
Assuming you're using the FirebaseUI-Android library, you can sign out of an account by calling the signOut method on the AuthUI instance. This will trigger the account chooser, allowing the user to select another account to sign in with.