Gradle重复输入错误

时间:2017-11-06 21:17:39

标签: android gradle android-gradle android-support-library

我得到了错误

  

错误:任务':app:transformClassesWithJarMergingForDebug'的执行失败。   com.android.build.api.transform.TransformException:java.util.zip.ZipException:重复条目:android / support / v4 / widget / ViewDragHelper $ Callback.class

在我的gradle中有这些依赖项。

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'br.com.liveo:navigationdrawer-material:2.5.1'
compile 'com.android.support:support-v4:23.4.0'
compile 'com.android.support:recyclerview-v7:25.3.1'
compile 'com.android.support:cardview-v7:25.3.1'
}

我也将muldiDexEnable设置为true。

这是libs

enter image description here

1 个答案:

答案 0 :(得分:0)

使用支持库的相同版本

compile 'com.android.support:support-v4:25.3.1'
compile 'com.android.support:recyclerview-v7:25.3.1'
compile 'com.android.support:cardview-v7:25.3.1'