I upgraded my build.gradle file from
compile \'com.google.android.gms:play-services:8.4.0\'
to
compile \'com.google.android.g
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'
}
}