-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Description
Step 2: Describe your environment
- Android device: Nexus 5__and Nexus 7___
- Android OS version: 6.0.1___
- Google Play Services version: _____
classpath 'com.google.gms:google-services:3.0.0' - Firebase/Play Services SDK version: _____
compile 'com.google.firebase:firebase-storage:9.2.0' - FirebaseUI version: ____
compile 'com.firebaseui:firebase-ui:0.4.2'
Step 3: Describe the problem:
FirebaseUI crashes with error below when attempting to login with code below.
Error is reported silently in Android monitor. App simply reports 'loading' for a number of seconds and goes to blank screen.
onActivityResult is never called.
Same result with either Smartlock or manually entered email/password.
Nexus 5x with Android N works fine.
Problem only exists with my Nexus 5 and Nexus 7.
Observed Results:
07-14 16:43:27.474 28980-28980/ca.tentensolutions.physiotherapy W/AcquireEmailHelper: Error fetching providers for email
com.google.firebase.FirebaseException: An internal error has occured. [ Backend Error ]
at com.google.android.gms.internal.zzafg.zzes(Unknown Source)
at com.google.android.gms.internal.zzafd$zzg.zza(Unknown Source)
at com.google.android.gms.internal.zzafo.zzet(Unknown Source)
at com.google.android.gms.internal.zzafo$zza.onFailure(Unknown Source)
at com.google.android.gms.internal.zzafj$zza.onTransact(Unknown Source)
at android.os.Binder.execTransact(Binder.java:453)
Relevant Code:
startActivityForResult(
// Get an instance of AuthUI based on the default app
AuthUI.getInstance().createSignInIntentBuilder().build(),
RC_SIGN_IN);