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
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
Ok so I get the following exception. No idea why it is happening. I have followed the guides how to set up auth for google account. I tried to search the google but no success of any solution for t...