错误:Android 中的任务 ':app:transformClassesWithJarMergingForDebug' 执行失败
Posted
技术标签:
【中文标题】错误:Android 中的任务 \':app:transformClassesWithJarMergingForDebug\' 执行失败【英文标题】:Error:Execution failed for task ':app:transformClassesWithJarMergingForDebug' in Android错误:Android 中的任务 ':app:transformClassesWithJarMergingForDebug' 执行失败 【发布时间】:2016-07-13 11:35:13 【问题描述】:构建apk时android studio出错。
Error:-Error:Execution failed for task
':app:transformClassesWithJarMergingForDebug'.
com.android.build.api.transform.TransformException:
java.util.zip.ZipException: duplicate entry:
com/google/android/gms/dynamic/LifecycleDelegate.class
我的捆绑配置文件
apply plugin: 'com.android.application'
android
compileSdkVersion 23
buildToolsVersion "23.0.3"
defaultConfig
applicationId "com.test"
minSdkVersion 14
targetSdkVersion 23
versionCode 1
versionName "1.0"
multiDexEnabled true
buildTypes
release
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
dependencies
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.3.0'
compile 'com.google.android.gms:play-services:4.0.30'
compile files('libs/cordova-2.9.0.jar')
【问题讨论】:
您的项目的依赖项和您的外部 jar 文件类之一发生冲突。所以你得到了这个错误。 【参考方案1】:您可以尝试禁用 Instant Run:
【讨论】:
同样的错误:-错误:任务':app:transformClassesWithJarMergingForDebug'的执行失败。 > com.android.build.api.transform.TransformException:java.util.zip.ZipException:重复条目:com/google/android/gms/dynamic/LifecycleDelegate.class以上是关于错误:Android 中的任务 ':app:transformClassesWithJarMergingForDebug' 执行失败的主要内容,如果未能解决你的问题,请参考以下文章
错误:Android 中的任务 ':app:transformClassesWithJarMergingForDebug' 执行失败
如何解决Android中的“任务':app:processDebugResources'执行失败”?