gpt4 book ai didi

Android:错误:任务 ':app:transformClassesWithJarMergingForDebug' 执行失败

转载 作者:行者123 更新时间:2023-11-29 15:42:24 26 4
gpt4 key购买 nike

尝试运行项目时遇到错误

Error:Execution failed for task ':app:transformClassesWithJarMergingForDebug'.
> com.android.build.api.transform.TransformException: java.util.zip.ZipException: duplicate entry: android/support/annotation/DimenRes.class

这是我的build.gradle

apply plugin: 'com.android.application'



android {
compileSdkVersion 'Google Inc.:Google APIs:23'
buildToolsVersion "24.0.0"
compileOptions.encoding = 'windows-1251'
defaultConfig {
applicationId "org.radiomango.app"
minSdkVersion 11
targetSdkVersion 23
multiDexEnabled true
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
}

dexOptions {
javaMaxHeapSize "4g"
preDexLibraries = false
}

buildTypes {
release {
minifyEnabled true
proguardFiles 'proguard.cfg'
}
}
}

dependencies {
compile 'com.google.code.gson:gson:2.2.2'
compile files('libs/acra-4.5.0.jar')
compile files('libs/android-support-v13.jar')
compile files('libs/org.apache.commons.httpclient.jar')
compile files('libs/org.apache.http.legacy.jar')
compile project(':seekArc_library')
compile project(':socialauthandroid')
compile project(':SwipeMenuListView')
compile 'com.android.support:design:24.0.0'

}

我尝试清理项目

构建->清理

之后重建,但没有效果

同步并清理项目,仍然没有结果。

最后我重新启动了android studio,但问题仍然令人兴奋。

谁能帮帮我

最佳答案

我认为这是因为您使用了 compile files('libs/android-support-v13.jar')compile 'com.android.support:design:24.0.0' 可能是这个库相互冲突

排除两者共同的库部分。使用 排除例如

compile('com.commonsware.cwac:camera-v9:0.5.4') {
exclude module: 'support-v4'
}

关于Android:错误:任务 ':app:transformClassesWithJarMergingForDebug' 执行失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38366372/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com