1. ホーム
  2. Android

コンフィギュレーション 'compile' は廃止され、'implementati solution' に置き換わりました。

2022-02-10 04:57:21
<パス

    今日、Android Studio を 3.1.2 にアップデートしたら、コンパイル前のプロジェクトで以下の例外が直接投げられて頭が痛くなり、検索したところ、設定ファイルの API が失効していることがわかり、失効した API を Over に修正しました。

1. 例外表示

Configuration 'compile' is obsolete and has been replaced with 'implementation' and 'api'. 
It will be removed at the end of 2018. For more information see: http://d.android.com/r/tools/update-dependency-configurations.html



<フォント 2. 解決方法


1. コンパイルから実装に変更
2. androidTestCompileをandroidTestImplementationに変更する。
3. testCompileをtestImplementationに変更する。

3. 修正前のオリジナルプロフィール

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile 'com.android.support:appcompat-v7:25.3.1'
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    compile 'com.android.support:support-core-ui:25.3.1'
    compile 'com.android.support:design:25.3.1'
    testCompile 'junit:junit:4.12'
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    implementation 'com.android.support:appcompat-v7:25.3.1'
    implementation 'com.android.support.constraint:constraint-layout:1.0.2'
    implementation 'com.android.support:support-core-ui:25.3.1'
    implementation 'com.android.support:design:25.3.1'
    testImplementation 'junit:junit:4.12'
}



<フォント 4. 変更後のプロファイル

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    implementation 'com.android.support:appcompat-v7:25.3.1'
    implementation 'com.android.support.constraint:constraint-layout:1.0.2'
    implementation 'com.android.support:support-core-ui:25.3.1'
    implementation 'com.android.support:design:25.3.1'
    testImplementation 'junit:junit:4.12'
}




<センター 文末のプロモーション
<センター ↓↓↓↓