android: 任务 ':app:dexDebug' zxing 条码扫描器执行失败

android: Execution failed for task ':app:dexDebug' zxing barcode scanner

我正在尝试使用来自 github 的 dm77/barcodescanner zxing,我一直在尝试使用这个库,但我总是得到 Error:Execution 任务“:app:dexDebug”失败。

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

我搜索了其他 app:dex:Debug 个问题,他们说我可能有多个依赖项。我试图检查它,但我无法检测到这些 "multiple dependencies" 是什么或在哪里。

这是我的代码:

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

    defaultConfig {
        applicationId "com.quest.questsuser"
        minSdkVersion 18
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    dexOptions {
        javaMaxHeapSize "4g"
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'

    compile 'com.android.support:recyclerview-v7:23.1.1'
    compile 'com.google.android.gms:play-services:8.3.0'
    compile 'com.android.support:cardview-v7:23.1.1'
    compile 'com.android.support:design:23.1.1'
    compile 'com.akexorcist:RoundCornerProgressBar:2.0.3'
    compile 'com.github.ksoichiro:Android-ObservableScrollView:v1.6.0'
    compile 'com.melnykov:floatingactionbutton:1.0.7'
    compile 'com.nineoldandroids:library:2.4.0'
    compile 'com.daimajia.easing:library:1.0.1@aar'
    compile 'com.daimajia.androidanimations:library:1.1.3@aar'
    compile 'com.parse.bolts:bolts-android:1.+'
    compile 'com.parse:parse-android:1.12.0'
    compile 'me.dm7.barcodescanner:zxing:1.8.4'
}
repositories {
    maven {
        url "https://jitpack.io"
    }
}

非常感谢您的帮助。

我已经从 https://www.youtube.com/watch?v=7uzWEjTVLQ4 找到了解决方案。 1. 我在默认配置 build.gradle 中添加了 multiDexEnabled true,在依赖项中添加了 compile 'com.android.support:multidex:1.0.0',在我的应用程序 Class 中,我在 onCreate 方法中添加了一个 MultiDex.install(this);