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

nc1teljy  于 2023-03-27  发布在  Android
关注(0)|答案(3)|浏览(156)

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'
vc9ivgsu

vc9ivgsu1#

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

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

build.gradle文件(模块:app)和not在build.gradle文件(Project)中。所以要解决这个问题,只需更改上面一行代码的位置。

nwwlzxa7

nwwlzxa72#

现在已经改为:

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

在build.gradle(模块)中

mkshixfv

mkshixfv3#

只是错误消息说'请在 * 构建文件 * 的 * 底部 * 应用google-services插件'
在这一行之前,用于build.gradle(App)中页面的顶部

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

现在把那个删掉,移到页面的底部,像这样

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

似乎事情已经改变了在最新版本的Android.这将摆脱错误.接受的答案没有为我工作,可能会变老.

相关问题