Android - 任务'执行失败':app:transformClassesWithMultidexlistForDebug'

时间:2016-06-02 15:15:02

标签: java android gradle

当我尝试运行我非常简单的Android应用程序时,我得到以下输出:

  

信息:Gradle:执行任务:[:app:assembleDebug]

     

信息:Kotlin:Kotlin JPS插件被禁用信息:6/2/16,   上午11:25 - 编译在6s内完成了1个错误和0个警告   706ms

     

错误:Gradle:任务执行失败   ':应用程序:transformClassesWithMultidexlistForDebug'。   com.android.build.api.transform.TransformException:com.android.ide.common.process.ProcessException:   org.gradle.process.internal.ExecException:进程'命令   '/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/bin/java'”   完成非零退出值1

我原本没有使用过multidex,而且我的标准dex也出现了类似的错误。这是我没有multidex的原始输出:

  

信息:Gradle:执行任务:[:app:assembleDebug]

     

信息:Kotlin:Kotlin JPS插件被禁用信息:6/2/16,   上午11:28 - 编译完成,7s内有1个错误和0个警告   624ms

     

错误:Gradle:任务执行失败   ':应用程序:transformClassesWithDexForDebug'。   com.android.ide.common.process.ProcessException:org.gradle.process.internal.ExecException:进程'命令   '/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/bin/java'”   完成非零退出值1

我认为我已经尝试了所有可以想到的解决方案,但没有任何作用。

这是我的应用程序级build.gradle:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "24.0.0 rc4"

    defaultConfig {
        applicationId "com.example.XXX.testapplication"
        minSdkVersion 15
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
        multiDexEnabled true
    }
    buildTypes {
//        debug {
//            minifyEnabled true
//            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
//        }
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

    dexOptions {
        incremental = true;
        javaMaxHeapSize "4g"
        //preDexLibraries = false
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:multidex:1.0.1'
    compile 'com.android.support:appcompat-v7:23.4.0'
    compile 'com.android.support:design:23.4.0'
}

我已尝试使用各种组合的注释和取消注释的线条来运行,但无济于事。

我的“lib”文件夹中没有文件。

这是我的更高级别的build.gradle:

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:1.5.0'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

这是我的AndroidManifest.xml:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
          package="com.example.XXX.testapplication">

    <application
            android:allowBackup="true"
            android:icon="@mipmap/ic_launcher"
            android:label="@string/app_name"
            android:supportsRtl="true"
            android:name="android.support.multidex.MultiDexApplication"
            android:theme="@style/AppTheme">
        <activity
                android:name=".MainActivity"
                android:label="@string/app_name"
                android:theme="@style/AppTheme.NoActionBar">
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>

                <category android:name="android.intent.category.LAUNCHER"/>
            </intent-filter>
        </activity>
    </application>

</manifest>

1 个答案:

答案 0 :(得分:1)

如果要集成multidex支持,那么您需要以一种令人担忧的方式进行操作。 从link

开始

尝试进行以下更改:

将defaultDexEnabled true添加到defaultConfig闭包中的gradle文件中。

在清单中,从支持库中添加MultiDexApplication类,如下所示:`

<application
    ...
    android:name="android.support.multidex.MultiDexApplication">
    ...
</application>

`

另请注意,如果您已经为项目安装了Application类,请覆盖名为attachBaseContext()的方法,并在该方法调用中: MultiDex.install(本)