Could not find method compile() for arguments [com.github.bumptech.glide:glide:3.7.0] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.
时间: 2023-10-10 18:05:15 浏览: 204
gradle-cache-action:GitHub Action正确缓存〜.gradle文件夹
这个错误可能是因为您正在使用的Gradle版本不支持`compile`方法。在Gradle 4.0及以上版本中,`compile`方法已被弃用,应该使用`implementation`或`api`方法。请尝试将您的依赖项更改为以下内容:
```
implementation 'com.github.bumptech.glide:glide:3.7.0'
```
如果您仍然遇到问题,请检查您的Gradle版本,并确保您的依赖项使用的是正确的方法。
阅读全文