程序类型已存在:com.google.common.util.concurrent.internal.InternalFutureFailureAccess
Program type already present: com.google.common.util.concurrent.internal.InternalFutureFailureAccess
我在编译我的项目时遇到了这个错误。我发现那是因为番石榴,以及我得到这个的原因,是其他库也在使用番石榴(番石榴的这个组件)(可能是其他版本,或者只是复制)。我不知道是哪一个。我正在使用 Guava 进行哈希处理,同时在登录时保存我的密码。
我知道有必要排除它,但我不知道具体是什么以及如何排除。
Program type already present: com.google.common.util.concurrent.internal.InternalFutureFailureAccess
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:support-v4:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:animated-vector-drawable:28.0.0'
implementation 'com.android.support:cardview-v7:28.0.0'
implementation "com.android.support:support-compat:28.0.0"
implementation 'com.amirarcane.recent-images:recentimages:2.0.1'
implementation 'com.android.support:design:28.0.0'
implementation 'com.mindorks:paracamera:0.2.2'
implementation 'com.theartofdev.edmodo:android-image-cropper:2.5.+'
implementation 'com.squareup.picasso:picasso:2.71828'
implementation 'com.squareup.okhttp3:okhttp:3.11.0'
implementation 'com.crowdfire.cfalertdialog:cfalertdialog:1.1.0'
implementation 'com.wdullaer:materialdatetimepicker:3.6.4'
implementation 'com.daimajia.numberprogressbar:library:1.4@aar'
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.google.code.gson:gson:2.6.2'
implementation 'com.squareup.retrofit2:retrofit:2.0.2'
implementation 'com.squareup.retrofit2:converter-gson:2.0.2'
implementation 'com.android.volley:volley:1.1.1'
implementation 'com.android.support:recyclerview-v7:28.0.0'
implementation 'jp.wasabeef:picasso-transformations:2.2.1'
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.0'
api 'com.google.guava:guava:27.0-android'
testImplementation 'junit:junit:4.12'}
我找到了解决方法:只需使用 'com.google.guava:guava:26.0-android' 而不是 'com.google.guava:guava:27.0-android'。那么问题就解决了!
而且,我也希望有人能告诉我根本原因。
这对我有用:
implementation(group: 'com.google.guava', name: 'guava', version: '27.0-android') {
exclude group: 'com.google.guava' , module: 'failureaccess'
}
最新版本的 Guava (27.0.1: https://github.com/google/guava/releases/tag/v27.0.1) 已经解决了这个问题。只需使用这个:
implementation 'com.google.guava:guava:27.0.1-android'
我在编译我的项目时遇到了这个错误。我发现那是因为番石榴,以及我得到这个的原因,是其他库也在使用番石榴(番石榴的这个组件)(可能是其他版本,或者只是复制)。我不知道是哪一个。我正在使用 Guava 进行哈希处理,同时在登录时保存我的密码。 我知道有必要排除它,但我不知道具体是什么以及如何排除。
Program type already present: com.google.common.util.concurrent.internal.InternalFutureFailureAccess
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:support-v4:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:animated-vector-drawable:28.0.0'
implementation 'com.android.support:cardview-v7:28.0.0'
implementation "com.android.support:support-compat:28.0.0"
implementation 'com.amirarcane.recent-images:recentimages:2.0.1'
implementation 'com.android.support:design:28.0.0'
implementation 'com.mindorks:paracamera:0.2.2'
implementation 'com.theartofdev.edmodo:android-image-cropper:2.5.+'
implementation 'com.squareup.picasso:picasso:2.71828'
implementation 'com.squareup.okhttp3:okhttp:3.11.0'
implementation 'com.crowdfire.cfalertdialog:cfalertdialog:1.1.0'
implementation 'com.wdullaer:materialdatetimepicker:3.6.4'
implementation 'com.daimajia.numberprogressbar:library:1.4@aar'
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.google.code.gson:gson:2.6.2'
implementation 'com.squareup.retrofit2:retrofit:2.0.2'
implementation 'com.squareup.retrofit2:converter-gson:2.0.2'
implementation 'com.android.volley:volley:1.1.1'
implementation 'com.android.support:recyclerview-v7:28.0.0'
implementation 'jp.wasabeef:picasso-transformations:2.2.1'
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.0'
api 'com.google.guava:guava:27.0-android'
testImplementation 'junit:junit:4.12'}
我找到了解决方法:只需使用 'com.google.guava:guava:26.0-android' 而不是 'com.google.guava:guava:27.0-android'。那么问题就解决了!
而且,我也希望有人能告诉我根本原因。
这对我有用:
implementation(group: 'com.google.guava', name: 'guava', version: '27.0-android') {
exclude group: 'com.google.guava' , module: 'failureaccess'
}
最新版本的 Guava (27.0.1: https://github.com/google/guava/releases/tag/v27.0.1) 已经解决了这个问题。只需使用这个:
implementation 'com.google.guava:guava:27.0.1-android'