I am developing android/ios app using Nativesript + angular. I want to display a ListView
in my app. For that ListView
, I want to use firestore database product by Firebase as Backend data provider.
What I want:
1. I don't want users to login or to be authenticated to use the app.
2. I want the data coming from firebase database can only be used by my app. If some other apps or anonymous utilizes the data, is there any way I can block them?
I have tried putting rules like
service cloud.firestore {
match /databases/{database}/documents {
match /{document=**} {
allow read: if true;
}
}
}
But it allows everyone to access the data.
Is there any other data provider which gives the same functionality?