Closed
Description
I'm using the new version 0.4.1 of the auth library (on a device with Android 6.0.1).
I'm trying to use the Google sign in provider, launching this intent:
startActivityForResult(
AuthUI.getInstance()
.createSignInIntentBuilder()
.setProviders(
AuthUI.EMAIL_PROVIDER,
AuthUI.GOOGLE_PROVIDER)
.build(),
RC_SIGN_IN);
When i login with email&password everythings works fine, but when i try to login with the google sign in button, i select the account and i can see a loader for about 3-4 seconds: then the loader disappears and nothing else happens, i still remain into the activity with the two login buttons.
onActivityResult
isn't fired and i don't know if login was successful or not.
Thanks.