错误:任务':app:transformClassesWithMultidexlistForDebug'的执行失败。添加extenal库后

时间:2016-10-01 09:24:11

标签: java android android-studio

我正在开发一个Android应用程序。在我尝试执行应用程序结果时添加此内容后,我在外部库spoon-runner-1.7.0-jar-with-dependencies.jar中使用`错误:任务执行失败':app:transformClassesWithMultidexlistForDebug'。

  

com.android.build.api.transform.TransformException:com.android.ide.common.process.ProcessException:org.gradle.process.internal.ExecException:进程'命令'C:\ Program Files \ Java \ jdk1 .8.0_51 \ bin \ java.exe''完成时非零退出值1`

我的gradle文件如下所示

    apply plugin: 'com.android.application'
android {
    compileSdkVersion 23
    buildToolsVersion "23.0.3"

    defaultConfig {
        applicationId "venki.testapp"
        minSdkVersion 16
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
        multiDexEnabled true
    }
    dexOptions {
        javaMaxHeapSize "4g"
        preDexLibraries = false
        incremental = true;

    }

    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_7
        targetCompatibility JavaVersion.VERSION_1_7
    }


    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.4.0'
    compile files('libs/spoon-runner-1.7.0-jar-with-dependencies.jar')
}

1。我尝试过清理项目并重建项目。 2。并且还使Invalidate缓存并重新启动android studio。 3. 增加堆积。 ** 4 **机器人:名称= “android.support.multidex.MultiDexApplication”

没有什么对我有帮助。请帮帮我。

1 个答案:

答案 0 :(得分:-1)

这必定是因为一些RAM问题。请关闭android studio并杀死java进程并尝试再次运行应用程序。