gpt4 book ai didi

android - org/intellij/lang/annotations/Identifier.class 的 TransformException 重复条目

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:57:06 27 4
gpt4 key购买 nike

我收到这个错误

Error:Execution failed for task ':app:transformClassesWithJarMergingForDebug'.
> com.android.build.api.transform.TransformException: java.util.zip.ZipException:
duplicate entry: org/intellij/lang/annotations/Identifier.class

它是在我将 compile "com.wefika:flowlayout:0.4.0" 添加到我的 gradle 之后开始的

这是我的gradle文件

 packagingOptions {
exclude 'META-INF/NOTICE' // will not include NOTICE file
exclude 'META-INF/LICENSE' // will not include LICENSE file
// as noted by @Vishnuvathsan you may also need to include
// variations on the file name. It depends on your dependencies.
// Some other common variations on notice and license file names
exclude 'META-INF/notice'
exclude 'META-INF/notice.txt'
exclude 'META-INF/license'
exclude 'META-INF/license.txt'
}

dexOptions {
javaMaxHeapSize "4g"
}




dependencies {

compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'

compile 'com.android.support:appcompat-v7:24.2.1'
compile 'com.android.support:design:24.2.1'
compile 'com.android.support:cardview-v7:24.2.1'
compile 'com.google.android.gms:play-services-location:9.6.1'
compile "com.google.firebase:firebase-messaging:9.0.0"
compile 'com.google.android.gms:play-services-auth:9.6.1'
compile 'com.google.android.gms:play-services-plus:9.6.1'
compile 'com.android.support:multidex:1.0.1'
compile 'com.jakewharton:butterknife:7.0.1'
compile 'com.loopj.android:android-async-http:1.4.9'
compile 'de.hdodenhof:circleimageview:2.0.0'
compile 'com.firebase:firebase-client-android:2.5.2'
compile 'com.facebook.android:facebook-android-sdk:[4,5)'
compile 'com.google.android.gms:play-services:9.6.1'
compile 'org.jetbrains:annotations-java5:15.0'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.google.firebase:firebase-core:9.4.0'
compile "com.wefika:flowlayout:0.4.0"

configurations.all {
resolutionStrategy {
force 'com.android.support:design:23.4.0'
force 'com.android.support:support-v4:23.4.0'
force 'com.android.support:appcompat-v7:23.4.0'
}
}

最佳答案

在这里看到这个问题,评论提供了解决方案 https://github.com/blazsolar/FlowLayout/issues/31

基本上,您需要将依赖项更改为:

compile ("com.wefika:flowlayout:<version>") {
exclude group: 'com.intellij', module: 'annotations'
}

关于android - org/intellij/lang/annotations/Identifier.class 的 TransformException 重复条目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40039770/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com