当我尝试在Android Studio中构建我的应用时出现此错误
错误:任务':app:transformClassesWithJarMergingForDebug'执行失败。
com.android.build.api.transform.TransformException:java.util.zip.ZipException:重复条目:retrofit2 / BuiltInConverters $ BufferingResponseBodyConverter.class
以下是我的依赖项:
compile 'com.android.support:appcompat-v7:24.2.1'
compile 'com.android.support:design:24.2.1'
compile 'com.google.firebase:firebase-core:9.0.2'
compile 'com.google.firebase:firebase-analytics:9.0.2'
compile 'com.google.firebase:firebase-config:9.0.2'
compile 'com.google.firebase:firebase-auth:9.0.2'
compile 'com.google.android.gms:play-services:9.0.2'
compile 'com.google.android.gms:play-services-appindexing:9.0.2'
compile 'com.google.firebase:firebase-database:9.0.2'
compile 'com.google.code.gson:gson:2.8.0'
compile 'com.squareup.retrofit2:retrofit:2.1.0'
compile 'com.squareup.retrofit2:converter-gson:2.1.0'
compile 'com.google.android.gms:play-services-maps:9.0.2'
compile 'com.android.support.constraint:constraint-layout:+'
compile 'com.android.support:multidex:1.0.1'
答案 0 :(得分:2)
似乎某些jar文件未正确编译。
尝试清理或重建项目
如果它没有帮助,除了删除jar文件并尝试再次添加
我相信它会有所帮助
答案 1 :(得分:1)
你展示的内容看起来不错。
根据错误,您有重复的转换器类。
删除libs文件夹中的所有改装jar,然后再次运行gradle build
答案 2 :(得分:0)
删除你已单独添加的gson库。只需要改装的那个。