Duplicate class com.google.common.util.concurrent.ListenableFuture found in modules jetified-guava-24.0-android (com.google.guava:guava:24.0-android) and jetified-listenablefuture-1.0 (com.google.guava:listenablefuture:1.0)
时间: 2023-12-03 12:42:34 浏览: 402
com.google.gson.Gson 2.8.0 jar包
5星 · 资源好评率100%
这个错误是因为在你的项目中,有两个不同版本的 `ListenableFuture` 类同时存在。一个是在 `com.google.guava:guava:24.0-android` 模块中的 `ListenableFuture` 类,另一个是在 `com.google.guava:listenablefuture:1.0` 模块中的 `ListenableFuture` 类。
要解决这个问题,你需要在你的项目中排除其中一个模块的 `ListenableFuture` 类。可以在 `build.gradle` 文件中添加以下代码:
```
dependencies {
// ...
implementation('com.google.guava:guava:24.0-android') {
exclude group: 'com.google.guava', module: 'listenablefuture'
}
}
```
这将会排除掉 `guava` 模块中的 `ListenableFuture` 类,只使用 `listenablefuture` 模块中的 `ListenableFuture` 类。
阅读全文