如何删除此警告“请在构建文件底部应用google-services插件。”

时间:2019-07-29 09:13:46

标签: android firebase

"Clone or download" github documentation这是模块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'

2 个答案:

答案 0 :(得分:2)

要解决此问题,您应该添加以下代码行:

apply plugin: 'com.google.gms.google-services'

build.gradle文件中(模块:app),在build.gradle文件中(项目)。因此,要解决此问题,只需更改上述代码行的位置即可。

答案 1 :(得分:0)

现在变成了:

plugins {
  id 'com.android.application'
  id 'com.google.gms.google-services'
}

在build.gradle(模块)中