I am making a mobile app with Firestore and React Native.
There is no authentication system and upon starting the app, the user download a collection from Firestore.
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
match /{document=**} {
allow read: if true;
}
}
}
As of right now, the rule allows everyone to read from the database. Is it possible/advisable to limit the traffic to only our mobile app?