I have this in my top-level build.gradle:
buildscript {
repositories {
jcenter()
}
dependencies {
classpath \'com.google.gms:google-s
Check the version of google services that you have in your root level build.gradle. This should be 3.0.0 or higher:
buildscript {
ext.kotlin_version = '1.0.2'
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.0'
classpath 'com.google.gms:google-services:3.0.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}