繁体   English   中英

错误:任务“:app:transformClassesWithDexForDebug”的执行失败

[英]Error:Execution failed for task ':app:transformClassesWithDexForDebug'

当我搜索错误消息时,我遇到了许多较小的问题,但没有一个对我有帮助。 所以我再问一次。 对我来说,此错误是在我添加处理程序以更新UI时发生的。 如果删除处理程序,将不会有错误。 为什么会发生。

错误:任务':app:transformClassesWithDexForDebug'的执行失败。

    com.android.build.api.transform.TransformException:  
    com.android.ide.common.process.ProcessException:                
    org.gradle.process.internal.ExecException: Process 
    'command 'C:\Program Files\Java\jdk1.8.0_60\bin\java.exe''
    finished with non-zero exit value 2

检查我的gradle。

 apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.1"

defaultConfig {
    applicationId "com.medical.trofii"
    minSdkVersion 15
    targetSdkVersion 23
    versionCode 1
    versionName "1.0"
    packagingOptions {
        exclude 'META-INF/DEPENDENCIES'
        exclude 'META-INF/NOTICE'
        exclude 'META-INF/LICENSE'
    }
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile group: 'cz.msebera.android', name: 'httpclient', version: '4.4.1.1'
compile project(':rangeseekbar')
compile project(':library')


compile 'com.android.support:appcompat-v7:23.1.1'
compile 'it.dex.dexmovingimageview:dexmovingimageviewlib:0.1.0'
compile 'com.google.android.gms:play-services:8.3.0'
compile 'com.android.support:design:23.1.1'
compile 'com.android.support:support-v4:23.1.1'
compile 'com.github.rahatarmanahmed:circularprogressview:2.4.0'
compile 'com.github.traex.rippleeffect:library:1.3'
compile 'com.mcxiaoke.volley:library-aar:1.0.0'
compile 'cn.pedant.sweetalert:library:1.3'
compile 'com.mikhaellopez:circularimageview:2.1.1'

}

只需更新此

compile 'com.android.support:design:23.0.1' 
compile 'com.android.support:appcompat-v7:23.0.1'

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM