skip to Main Content

enter image description here

enter image description here

my problem is when i want to use FirebaseDatabase ; android studio Cannot resolve symbol ‘DatabaseReference’

2

Answers


  1. you can try clean Project (Build-> Clean Project) or Invalidate Caches(File->Invalidate Caches -> Invalidate and Restart)

    Login or Signup to reply.
  2. Please check if you have these dependencies in your build.gradle (Module:app) file.

     implementation 'com.google.firebase:firebase-database:20.0.5'
     implementation platform('com.google.firebase:firebase-bom:29.2.1')
    

    For further guide on how to setup firebase properly please visit this.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search