4

我的项目是一个使用 Parse 的聊天应用程序。添加其他依赖项后,开始出现此问题:

错误:任务“:app:dexDebug”执行失败。com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command '/usr/lib/jvm/java-7-oracle/bin/java'' 以非零退出完成值 2

在 StackOverflow 中搜索,有些人告诉我这可能是 Android 的 65K 限制。因此,为了解决,我按照以下步骤操作:

1 - 添加多索引

DefaultConfig {
         multiDexEnabled true
}

compile 'com.android.support:multidex:1.0.0'

https://developer.android.com/tools/building/multidex.html

2 - 在 Android Gradle 设置中启用巨型模式

 dexOptions {
        jumboMode = true
 }

我清理了项目并运行了 gradle 构建。它没有产生任何错误。伟大的!但是当我单击“运行应用程序”时,它会在下面生成此错误。

错误:任务“:app:packageAllDebugClassesForMultiDex”的执行失败。> Java.util.zip.ZipException:重复条目:bolts / AggregateException.class

如果我删除依赖项'com.parse.bolts:bolts-android:1.+',“运行应用程序”可以工作,但我不能没有 Parse 的依赖项。

这是我的 Gradle 构建脚本:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 22
    buildToolsVersion "22.0.1"

    defaultConfig {
        applicationId "br.com.triangulum.mink"
        minSdkVersion 18
        targetSdkVersion 22
        versionCode 1
        versionName "1.0"
        multiDexEnabled true

    }
    buildTypes {
        release {

            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    dexOptions {
        jumboMode = true
    }
}
repositories {
    mavenCentral()
}

dependencies {
    compile 'com.parse.bolts:bolts-android:1.+'
    compile('com.android.support:multidex:1.0.0') {
        exclude group: 'com.parse.bolts',
                module: 'bolts-android'
    }
    androidTestCompile 'com.android.support:multidex-instrumentation:1.0.0'
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile fileTree(dir: 'libs', include: 'Parse*.jar')
    compile project('libraries:httprequest')
    compile project('libraries:cameralibrary')
    compile project('libraries:bgarefreshlayout')
    compile 'com.android.support:appcompat-v7:+'
    compile 'com.android.support:recyclerview-v7:+'
    compile 'com.android.support:cardview-v7:+'
    compile 'com.android.support:palette-v7:+'
    compile 'com.android.support:design:+'
    compile 'com.daimajia.swipelayout:library:1.2.0@aar'
    compile 'com.google.android.gms:play-services:6.5.87'
    compile 'com.google.code.gson:gson:2.2.+'
    compile 'com.squareup.picasso:picasso:2.4.0'
    compile 'com.jakewharton:butterknife:7.0.1'
    compile 'com.afollestad:material-dialogs:0.7.4.0'
    compile 'com.getbase:floatingactionbutton:1.10.0'
    compile 'com.facebook.android:facebook-android-sdk:4.1.0'
    compile 'de.greenrobot:eventbus:2.4.+'
    compile'com.edmodo:cropper:1.0.+'
    compile 'com.github.ksoichiro:android-observablescrollview:+'
    compile 'com.etsy.android.grid:library:1.0.5'
    compile('com.mikepenz:actionitembadge:3.0.2@aar') {
        transitive = true
    }
    compile 'com.daimajia.swipelayout:library:1.2.0@aar'
    compile 'com.android.support:multidex:1.0.+'
}
4

2 回答 2

3

尝试改变这一点:

compile('com.android.support:multidex:1.0.0') {
        exclude group: 'com.parse.bolts',
                module: 'bolts-android'
    }

对此:

compile('com.android.support:multidex:1.0.0');

有时使用粗体模块来修复重复的 dexLibs

问候

于 2015-08-24T20:39:32.210 回答
0

您的com.facebook.android:facebook-android-sdk:4.1.0库与 parse 混淆了,因为两者都在内部使用相同的 bolts-android 模块并且具有该模块的不同版本。尝试将此模块从任何 parse 或 facebook gradle 依赖项中排除。

compile('com.facebook.android:facebook-android-sdk:4.1.0') {
        exclude group: 'com.parse.bolts',
                module: 'bolts-android'
    }

我遇到了同样的问题,当我./gradlew yourModuleName:dependencies通过终端运行时,我确切地发现了哪两个库相互混淆,内部具有相同模块的不同版本。

于 2017-09-29T07:41:58.733 回答