I'm developing a Firebase Realtime database application. in the App, users don't want to Authenticate.So, I make the rules as public
{
"rules": {
".read": true,
".write": true
}
}
(User no need to register/login).but in the Firebase Realtime database section, it says as a Warning
Your security rules are defined as public, so anyone can steal, modify, or delete data in your database.
So, How can Secure the data without Authenticate(Login/Register) the user?