构建应用程序中的Android错误。 java.util.zip.ZipException:重复条目:android / support / v7 / view / ActionMode $ Callback.class

时间:2016-01-05 07:15:09

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

在android studio中运行我的应用程序时,我收到以下错误:

Error:Execution failed for task ':app:transformClassesWithJarMergingForDebug'.
  

com.android.build.transform.api.TransformException:java.util.zip.ZipException:重复条目:android / support / v7 / view / ActionMode $ Callback.class

这里是sdk版本和构建工具

compileSdkVersion 21
buildToolsVersion "21.1.2"

这是我的gradle依赖项:

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.google.android.gms:play-services-gcm:8.1.0'
compile 'com.google.android.gms:play-services-location:8.1.0'
compile 'com.android.support:appcompat-v7:22.2.1'
compile 'com.android.support:cardview-v7:22.2.1'
compile 'com.android.support:recyclerview-v7:22.2.1'
compile 'com.android.support:support-v13:22.2.1'
compile files('libs/gson-2.3.1.jar')
compile project(':Cropper')
compile project(':volley')
compile files('libs/httpclient-4.5.1.jar')
compile files('libs/httpcore-4.3.1.jar')
compile files('libs/httpmime-4.3.1.jar')
compile files('libs/ormlite-android-4.43.jar')
compile files('libs/ormlite-core-4.43.jar')
compile files('libs/acra-4.6.1.jar')
compile 'com.android.support:design:22.2.1'

}

而且我使用的是volley api和一个cropper库。两个库都不具有任何依赖性。我不知道我在哪里使用重复的库。

在升级设计库(支持:设计)之前,我使用了以下依赖项:

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.google.android.gms:play-services-gcm:8.1.0'
compile 'com.google.android.gms:play-services-location:8.1.0'
compile 'com.android.support:appcompat-v7:22.0.0'
compile 'com.android.support:cardview-v7:22.0.0'
compile 'com.android.support:recyclerview-v7:22.2.0'
compile 'com.android.support:support-v13:22.0.0'
compile files('libs/gson-2.3.1.jar')
compile project(':Cropper')
compile project(':volley')
compile files('libs/httpclient-4.5.1.jar')
compile files('libs/httpcore-4.3.1.jar')
compile files('libs/httpmime-4.3.1.jar')
compile files('libs/ormlite-android-4.43.jar')
compile files('libs/ormlite-core-4.43.jar')
compile files('libs/acra-4.6.1.jar')
compile 'com.android.support:design:22.2.0'

}

它工作正常但在进行更改后,这些依赖项开始抛出相同的错误。我无法理解这个问题。

请完全解决这个问题。

提前致谢!!

1 个答案:

答案 0 :(得分:0)

因此,在我花了半天后,我得出结论,你不需要对这个错误做任何事情......只需重建你的项目或清理,重复的问题就会解决。感谢这个答案link

所以根据我的说法,当您像support-design或v7更新库时,您应该重建您的项目,因为任何更新都可能具有相同的文件名,该文件已经在已经编译的库中与新的冲突那些。因此,请始终记住在更新任何库之后重建项目。

由于