I know that firestore works behind rules, but even I changed rules to allow everything it doesn't work and it gives me this error(). The same rules work for my other project's firestore under the same account. Do you think is this a bug or am I skipping some point?
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
match /{document=**} {
allow read, write: if true;
}
}
}
Thanks in advance