A problem occurred evaluating project ':app'. Could not find method compile() for arguments [com.flyco.dialog:FlycoDialog_Lib:1.3.2@aar] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.
时间: 2024-04-08 15:30:06 浏览: 221
Node.js API详解之 console模块用法详解
这个错误是由于在 Gradle 项目中使用了一个过时的方法 `compile()` 导致的。在最新的 Gradle 版本中,`compile()` 方法已经被弃用并且移除了。相应的解决方法是使用 `implementation` 替代 `compile()`。
你可以将你的依赖项修改如下:
```groovy
implementation 'com.flyco.dialog:FlycoDialog_Lib:1.3.2@aar'
```
然后重新构建你的项目,这个错误应该就会被解决了。
阅读全文