I've got Firebase
Database working on iOS.
Everywhere the doc tells me that using
{
"rules": {
".read": true,
".write": true
}
}
Will make the DB open to "the world". So I want to limit access to my app only. The doc says how to append user auth and rules according til this. But I just want general auth for the app, not per user.
How do I achieve that?
Thanks,