1. ホーム
  2. Android

警告: 構成 'compile' は廃止され、'implementation' と 'api' に置き換わりました。

2022-02-10 18:51:48

パーセントのレイアウトを設定する際に、ビルド内のコード行を変更しました。

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:27.1.1'
    compile 'com.android.support:percent:27.1.1'
    implementation 'com.android.support.constraint:constraint-layout:1.1.0'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}


そして、次のようなプロンプトが表示されます。

Warning:Configuration 'compile' is obsolete and has been replaced with 'implementation' and 'api'.
It will be removed at the end of 2018

というのは

compileは2018年末に非推奨となり、imlementationに置き換えられるので、この警告が報告され、警告を修正する方法は、imlementationに置き換えるだけです。

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:27.1.1'
    implementation 'com.android.support:percent:27.1.1'
    implementation 'com.android.support.constraint:constraint-layout:1.1.0'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}

<イグ

プロンプトは、前回の更新以降にgradleファイルが変更されたため、再度同期する必要があることを示しています。