I've created an android app and used firebase as means to email sign up and authentication. After signing up, users can store inventory items in the database. So my question is how would i setup firebase authentication rules so that specific user can access only the data they entered. Right now, everyone can read/write in the database. I'm not worried about the write part, because of email authentication. Thanks in advance!
{
"rules": {
".read": "auth != null",
".write": "auth != null"
}
}
My data base is set in this way:Database