在模块guava-20.0.jar(com.google.guava:guava:20.0)中找到的重复类com.google.common.util.concurrent.ListenableFuture

时间:2019-06-17 22:15:17

标签: android firebase guava firebase-in-app-messaging

当我在implementation 'com.google.firebase:firebase-inappmessaging-display:17.2.0'中使用app/build.gradle时,出现此错误:

Duplicate class com.google.common.util.concurrent.ListenableFuture found in modules guava-20.0.jar (com.google.guava:guava:20.0) and listenablefuture-1.0.jar (com.google.guava:listenablefuture:1.0)

Go to the documentation to learn how to Fix dependency resolution errors.

我的app/build.gradle中还有以下内容:

implementation 'com.google.android.gms:play-services-base:16.1.0'
implementation 'com.google.android.gms:play-services-analytics:16.0.8'
implementation 'com.google.android.gms:play-services-awareness:16.0.0'
implementation 'com.google.android.gms:play-services-cast:16.2.0'
implementation 'com.google.android.gms:play-services-gcm:16.1.0'
implementation 'com.google.android.gms:play-services-location:16.0.0'
implementation 'com.google.android.gms:play-services-maps:16.1.0'
implementation 'com.google.firebase:firebase-core:16.0.8'
implementation 'com.google.firebase:firebase-iid:17.1.2'
implementation 'com.google.firebase:firebase-messaging:17.6.0'
implementation 'android.arch.work:work-runtime:1.0.1'
implementation 'com.android.support:multidex:1.0.3'
apply plugin: 'com.google.gms.google-services'

也许我正在使用的库之一已经包含对应用程序内消息依赖的支持,然后它变得多余了?谢谢。

10 个答案:

答案 0 :(得分:228)

2020解决方案

Google知道此错误,因此他们制作了一个特殊的程序包来解决冲突。

将此添加到您的build.gradle

implementation 'com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava'

答案 1 :(得分:9)

在build.gradle中添加此行

    implementation 'com.google.guava:guava:27.0.1-android'

答案 2 :(得分:7)

在构建Flutter项目时,我碰到了这一点。不太确定为什么会抬起丑陋的头,但是我在这里。

因此,如果有Flutter开发人员遇到此问题,@ Ray Li的回答对我有用。您要编辑的build.gradle文件是android/app文件夹中的文件(即不是android文件夹中的文件)。

只需将implementation 'com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava'添加到文件末尾的“ dependencies”部分,如下所示:

dependencies {
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    implementation 'com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava'
}

答案 3 :(得分:5)

我遇到了同样的问题。我在下面添加了行

implementation 'com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava'

这可行,但我遇到了另一个问题-Cannot fit requested classes in a single dex file (# methods: 89411 > 65536)要解决此错误,请确保启用以下multiDex

defaultConfig {
    applicationId "com.techweezy.smartsync"
    minSdkVersion 19
    targetSdkVersion 29
    versionCode 5
    versionName "1.4"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    multiDexEnabled true //added this line
}

然后最后添加以下几行。

   implementation 'com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava'
    implementation 'androidx.multidex:multidex:2.0.1'

答案 4 :(得分:3)

我在How to solve Program type already present: com.google.common.util.concurrent.ListenableFuture?找到了解决方案。 user2297550说:

  

我只是在应用gradle文件的末尾添加了implementation 'com.google.guava:guava:27.0.1-android',错误消失了。

那是我的解决方案。现在我有了这个,我的应用程序可以正确编译:

implementation 'com.google.firebase:firebase-inappmessaging-display:17.2.0'
implementation 'com.google.guava:guava:27.0.1-android'

答案 5 :(得分:1)

  1. 打开build.gradle文件。

  2. 请勿替换!只需将此行添加到dependencies{}

    implementation 'com.google.guava:guava:<version>-jre'
    

注意:要获取该版本,请转到https://mvnrepository.com/artifact/com.google.guava/guava并查找jre的最新版本。

答案 6 :(得分:1)

将此添加到您的gradle文件中

configurations {
    all*.exclude group: 'com.google.guava', module: 'listenablefuture'
}

答案 7 :(得分:1)

将这两个实现添加到您的应用级别 build.gradle / app/build.gradle

implementation 'com.google.firebase:firebase-inappmessaging-display:17.2.0'
implementation 'com.google.guava:guava:27.0.1-android'

答案 8 :(得分:0)

我添加了这个并且非常适合我。

implementation 'com.google.guava:guava:27.0.1-android'

答案 9 :(得分:-1)

减少项目中重复的依赖项

例如,许多依赖项使用support-v4和appcompat-v7作为附带的软件包,然后可能是不同的版本,因此您需要从依赖项内部删除此软件包并创建一个编译依赖项。

这将删除所有包含的库模块

android {
  configurations {
     all*.exclude module: 'appcompat-v7'
     all*.exclude module: 'support-v4'
  }
}

或者您可以管理将每个依赖项抛出,以便更清楚地删除软件包,如下所示:

dependencies {
  implementation ('com.mapbox.mapboxsdk:mapbox-android-sdk:4.2.0@aar') {//depend on your library
     transitive = true
     exclude group: 'com.android.support', module: 'appcompat-v7'
     exclude group: 'com.android.support', module: 'recyclerview-v7'
     exclude group: 'com.android.support', module: 'design'
     exclude group: 'com.android.support', module: 'support-v4'
     exclude group: 'com.squareup.retrofit2' module: 'retrofit'
     exclude group: 'com.squareup.retrofit2', module: 'retrofit'
     exclude group: 'com.google.code.gson', module: 'gson'
     exclude module: 'guava'//add this line if you have build error "found in modules guava-xxx-android.jar"
  }
}

所有已删除的依赖项都必须在mapbox之外声明为一个副本,以便所有库都使用它们。