From quickstart-android samples projects I'm trying the Firebase Auth Quickstart sample targeting the Passwordless method with these versions:
// Firebase Authentication
implementation 'com.google.firebase:firebase-auth:16.0.2'
implementation 'com.google.firebase:firebase-core:16.0.0'
// Google Sign In SDK (only required for Google Sign In)
implementation 'com.google.android.gms:play-services-auth:15.0.1'
// Firebase UI
// Used in FirebaseUIActivity.
implementation 'com.firebaseui:firebase-ui-auth:4.0.0'
I've followed the setup as documented in the project README but I get the following error (Logcat):
06-25 10:51:31.603 3657-3657/com.google.firebase.quickstart.auth W/PasswordlessSignIn: Could not send link
com.google.firebase.FirebaseException: An internal error has occurred. [ UNAUTHORIZED_DOMAIN:Domain not whitelisted by project ]
at com.google.firebase.auth.api.internal.zzce.zzb(Unknown Source:55)
The Firebase->Authentication->Authorized domain
table contains <my-project-name>.firebaseapp.com
as authorized domain.
What am I missing?