Cannot Connect To Firebase Realtime Database
I cannot connect to Firebase realtime database. Here is a simple code which will set value of field message to Hello world. @Override protected void onCreate(Bundle savedInstanceSt
Solution 1:
on the database tab, in your firebase console, view rules and change them to this
{
"rules": {
".read": "auth == null",
".write": "auth == null"
}
}
Post a Comment for "Cannot Connect To Firebase Realtime Database"