Android app does not connect to Firebase

前端 未结 21 1868
太阳男子
太阳男子 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:15

    Make sure that your app/build.gradle doesn't have obsolete dependencies and declaration. Mine the problem was with using

    dataBinding {
        enabled = true
    }
    

    instead of

    buildFeatures{
            dataBinding = true
        }
    

提交回复
热议问题