WARNING: Configuration 'compile' is obsolete and has been replaced with 'implementation' and 'api'.

如提示,直接在build.gradle中的"compile " 替換成 implementation 或者 api即可。

替換前:
dependencies {
compile “com.android.support:support-v4:27.0.2”
compile “com.android.support:support-v13:27.0.2”
compile “com.android.support:cardview-v7:27.0.2”
compile “com.android.support:appcompat-v7:27.0.2”
}

替換後:
dependencies {
api “com.android.support:support-v4:27.0.2”
api “com.android.support:support-v13:27.0.2”
api “com.android.support:cardview-v7:27.0.2”
api “com.android.support:appcompat-v7:27.0.2”
}


版权声明:本文为Kelvin_HuangJin原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。