How to solve Firebase API initialization failure (Android + Firebase)

前端 未结 12 1365
渐次进展
渐次进展 2020-12-29 20:02

I recently needed to use Google GCM in my project. From its website it is said:

Firebase Cloud Messaging (FCM) is the new version of GCM. It inherits

12条回答
  •  灰色年华
    2020-12-29 20:36

    I had the same issue, fixed by upgrading to play-services-auth:10.0.1:

    dependencies {
        ......
        //implementation 'com.google.android.gms:play-services-auth:9.0.0'
        implementation 'com.google.android.gms:play-services-auth:10.0.1'
        ....
    }
    

提交回复
热议问题