构建应用程序时出现Android错误.java.util.zip.ZipException:重复条目:android/s



在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"

这是我的等级依赖项:

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'

}

此外,我正在使用截击api和cropper库。两个库都没有任何依赖关系。我不知道我在哪里使用复制库。

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

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'

}

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

请帮我解决这个问题,因为我完全困在这里了。

提前感谢!!

所以在花了半天时间之后,我得出结论,你不需要对这个错误做任何事情。。。只要重新构建您的项目或清理,重复的问题就会解决。感谢这个回答链接

因此,根据我的说法,当你更新你的库(如支持设计或v7)时,你应该重建你的项目,因为任何更新都可能有相同的文件名,而这些文件已经在已经编译的库中,与新的库冲突。因此,请始终记住在更新任何库之后重新构建您的项目。

感谢

相关内容

  • 没有找到相关文章

最新更新