I keep getting this error regardless of what I do to change my rules, I even went through the documentation of firebase rules, I basically want unsigned in users (using Firebase authentication) to be able to read data from my database but only signed in users to be able to write and update, how can I achieve this?
This is what I attempted below
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
match /{document=**} {
allow read, write, update, create: if true;
}
}
}