I am using the firebase real-time database for my android app, I had written the secured rules in a real-time database but it's still showing me this warning.
here are my security rules.
{
"rules": {
".read": "auth.uid !=null",
".write":"auth.uid !=null"
//This is my rules in firebase Real-time database
}
}
here is that warning pop up to me
We've detected the following issue(s) with your security rules: any logged-in user can read your entire database any logged-in user can write to your entire database