小编典典

仍然收到警告:配置“编译”已过时并已替换为“实现”

all

我已经在我的项目中替换了所有出现的compileby ,但我仍然收到这个警告:implementation``build.gradle

在此处输入图像描述

我试图在整个项目中寻找“编译”,但没有找到匹配项。那么可能是什么原因呢?


阅读 105

收藏
2022-04-04

共1个答案

小编典典

我已经com.google.gms:google-services3.1.1to更新3.2.0,警告停止出现。

buildscript {

    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.1.0'

    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files

    classpath 'com.google.gms:google-services:3.2.0'
    }
}
2022-04-04