module gradleproject gradle这是模块Gradle文件的代码片段,我在构建Gradle文件的底部添加了“com.google.gms.google-services
”。我仍然看到警告“请在构建文件的底部应用google-services插件。”。如何删除警告?
buildscript {
repositories {
google()
mavenCentral()
jcenter()
}
dependencies {
// Add this line
classpath 'com.google.gms:google-services:4.2.0'
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation project(':app')
implementation 'com.google.firebase:firebase-core:17.0.1'
}
apply plugin: 'com.google.gms.google-services'
3条答案
按热度按时间vc9ivgsu1#
要解决这个问题,您应该添加以下代码行:
在
build.gradle
文件(模块:app)和not在build.gradle文件(Project)中。所以要解决这个问题,只需更改上面一行代码的位置。nwwlzxa72#
现在已经改为:
在build.gradle(模块)中
mkshixfv3#
只是错误消息说'请在 * 构建文件 * 的 * 底部 * 应用google-services插件'
在这一行之前,用于build.gradle(App)中页面的顶部
现在把那个删掉,移到页面的底部,像这样
似乎事情已经改变了在最新版本的Android.这将摆脱错误.接受的答案没有为我工作,可能会变老.