Configuration 'compile' is obsolete and has been replaced with 'implementation' and 'api'. It will be removed in version 7.0 of the Android Gradle plugin. For more information, see http://d.android.com/r/tools/update-dependency-configurations.html.
时间: 2024-03-29 18:40:39 浏览: 225
这也是 Gradle 插件的一个警告,它告诉你使用的 `compile` 配置已经过时,建议你使用 `implementation` 或 `api` 配置来代替它。这是因为 Android Gradle 插件已经更新了它的依赖配置,以更好地支持 Gradle 4.0+ 的新特性。
为了解决这个问题,你需要在你的项目中找到使用了 `compile` 的地方,并将其替换为 `implementation` 或 `api`。你可以在你的项目的 `build.gradle` 文件中做这个修改,例如:
```
dependencies {
// 旧的依赖方式
// compile 'com.android.support:appcompat-v7:28.0.0'
// 新的依赖方式
implementation 'com.android.support:appcompat-v7:28.0.0'
}
```
当你完成这些修改后,Gradle 插件的警告应该就不会再出现了。
阅读全文