Upgrade to Google Play Services:9.0.0 Error Failed to resolve: com.google.android.gms:play-services-measurement:9.0.0

后端 未结 6 1343
眼角桃花
眼角桃花 2020-11-27 03:28

I upgraded my build.gradle file from

compile \'com.google.android.gms:play-services:8.4.0\'

to

compile \'com.google.android.g

6条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-11-27 03:40

    GCM has been rebranded to Firebase Cloud Messaging (FCM), If you want to use com.google.android.gms:play-services:9.0.0 read this article FCM. Do this maybe work, modify your build.gradle file to use the plugin.

    buildscript {
      dependencies {
        // Add this line
        classpath 'com.google.gms:google-services:3.0.0'
      }
    }
    

提交回复
热议问题