I have a firebase app with all my code on the frontend (I know, not great). I've enabled App Check and my rules are currently:
service cloud.firestore {
match /databases/{database}/documents {
match /{document=**} {
allow read, write: if false;
}
}
}
Is it still possible for people to access my data by somehow using Cloud Functions in the dev tools console?
Note this app will not be released - I'd have an actual backend for this.