我在返回JSON请求时遇到错误,我的程序没有编译得到这个错误..!
Error:Execution failed for task ':app:transformClassesWithJarMergingForDebug'.
> com.android.build.api.transform.TransformException: java.util.zip.ZipException: duplicate entry: com/android/volley/AuthFailureError.class
答案 0 :(得分:0)
complie this
compile 'com.android.volley:volley:1.0.0'
在您的应用内部build.gradle file
android{
configurations {
all*.exclude group: 'com.android.volley'
all*.exclude module: 'toolbox'
}}
答案 1 :(得分:0)
com.android.build.api.transform.TransformException: java.util.zip.ZipException:重复条目: COM /机器人/凌空/ AuthFailureError.class
如果您使用
compile 'com.mcxiaoke.volley:library:1.0.19'
您应该在 build.gradle 部分添加此内容。
configurations{
all*.exclude module: 'toolbox'
}
<强> FYI 强>
mcxiaoke.volley:library:1.0.19
是 。不要使用。Deprecated
您应该使用 Volley
compile 'com.android.volley:volley:1.0.0'