Last active
January 15, 2022 06:39
-
-
Save rapisenpai/a03b09211a901e87e7f91d4e057dfa98 to your computer and use it in GitHub Desktop.
Permission Denied Error in Android Studio & Firebase
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rules_version = '2'; | |
service cloud.firestore { | |
match /databases/{database}/documents { | |
match /{document=**} { | |
allow read, write: if true | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment