Android Question Firebase Storage problems

Scantech

Well-Known Member
Licensed User
Longtime User
SignInWithGoogle.ResultArrived
ResultArrived Success
** Activity (prefs1) Resume **
firebaseAuthWithGoogle success: false
error: com.google.firebase.FirebaseException: An internal error has occurred. [ CONFIGURATION_NOT_FOUND ]

service firebase.storage {
match /b/xxx-xxxxx-xxx.appspot.com/o {
match /auth/{allPaths=**} {
allow read, write: if request.auth != null;
}
match /user/{userId}/{allPaths=**} {
allow read, write: if request.auth.uid == userId;
}

}
}
I have a new project which is not yet published. Can I check the functionality of firebase storage on my phone? I can't get the login screen to pop up. I set the rules properly and json is attached to the project. bucket in the codes is set properly. Anything else I should check? Thanks
 

Xandoca

Active Member
Licensed User
Longtime User
I have a new project which is not yet published. Can I check the functionality of firebase storage on my phone? I can't get the login screen to pop up. I set the rules properly and json is attached to the project. bucket in the codes is set properly. Anything else I should check? Thanks
Have you checked these configurations?
 
Upvote 0
Top