I am new in Development. I have a very basic Question but I tried to find it on google and did not understand. My question is that.
In firebase Google said that the meaning of:
{
“rules”: {
“.read”: true,
“.write”: true
}
}
is that anyone can interrupt in this type of security rules, even a person who doesn't use your app. I got it. Now, If I want to make a chat app or a small social app then what kind of security rule should I use?
Is this rule is enough to make my app secure? that I post below:
{
"rules": {
".read": "auth != null",
".write": "auth != null",
}
My app Goal is to authenticate a user through Firebase Authentication before using my app, My app will have chat option and simple Question posting option. Hope I clear it up. IDE is Android Studio with Flutter, Dart as language.