まだ警告が表示されます: 構成 'compile' は廃止されており、 'implementation' に置き換えられました 質問する

まだ警告が表示されます: 構成 'compile' は廃止されており、 'implementation' に置き換えられました 質問する

プロジェクトの 内のすべての をcompileに置き換えましたが、それでもこの警告が表示されます:implementationbuild.gradle

ここに画像の説明を入力してください

プロジェクト全体で「compile」を検索してみましたが、一致するものは見つかりませんでした。原因は何でしょうか?

ベストアンサー1

からcom.google.gms:google-servicesにアップデートしたら警告が表示されなくなりました。3.1.13.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")
    }
}

おすすめ記事