嗨,我收到此错误
错误:任务':app:transformClassesWithJarMergingForDebug'执行失败。 com.android.build.api.transform.TransformException:java.util.zip.ZipException:重复条目:com / google / gson / annotations / Expose.class
当我将改装的GSON转换器添加到我的gradle时,这是我的gradle。
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile files('libs/GenAsync.1.2.jar')
compile files('libs/gson-2.2.4.jar')
compile files('libs/KGJsonConverter.jar')
compile files('libs/MD5Simply.jar')
compile files('libs/PhotoUtil.jar')
compile files('libs/android-viewbadger.jar')
compile 'com.squareup.retrofit2:converter-gson:2.1.0'
testCompile 'junit:junit:4.12'
compile files('libs/retrofit-2.1.0.jar')
}
你能解决我的问题吗?感谢
答案 0 :(得分:0)
类com.google.gson.annotations.Expose
在多个依赖项中定义。您需要排除或删除冲突的依赖项。
EG。 com.squareup.retrofit2:converter-gson:2.1.0
已包含传递依赖com.google.code.gson:gson:2.7
,因此无需另外声明compile files('libs/gson-2.2.4.jar')
。