Android app does not connect to Firebase

前端 未结 21 1864
太阳男子
太阳男子 2020-12-13 17:50

I\'m developing android app using Firebase GMS service.
I tried to follow their tutorials, i made project as they said, downloaded the json files.

But when I

21条回答
  •  北海茫月
    2020-12-13 18:22

    I recently update to Android studio 4.0 and got into this error. I was still using the obsolete way to add the databinding . Changing it to the updated way to use the data binding resolved my issue. Below is the code :

    buildFeatures{
            dataBinding = true
            // for view binding :
            // viewBinding = true
        }
    

提交回复
热议问题