JSON对象请求时出错

时间:2017-08-30 09:09:25

标签: android

我在返回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

2 个答案:

答案 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'