I am getting this error while adding "com.google.gms:google-services:3.0.0"
this script in my build.gradle
dependency.
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
Apply this in build.gradle(Project: your project name) where tools.build:gradle is present and not in build.gradle(Module: app)
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.2'
classpath 'com.google.gms:google-services:3.0.0'
}
}
In build.gradle(Module: app) outside dependencies add this:
apply plugin: 'com.google.gms.google-services'