意外的顶级异常:com.android.dex.DexIndexOverflowException合并依赖项

时间:2015-11-08 03:44:11

标签: android android-studio gradle dependencies android-gradle

在我的项目中有一个问题,当我想在我的应用程序中添加谷歌播放依赖关系到谷歌地图。问题是,当我想运行项目时,我会给出这些错误:

UNEXPECTED TOP-LEVEL EXCEPTION:
com.android.dex.DexIndexOverflowException: method ID not in [0, 0xffff]: 65536
    at com.android.dx.merge.DexMerger$6.updateIndex(DexMerger.java:502)
    at com.android.dx.merge.DexMerger$IdMerger.mergeSorted(DexMerger.java:283)
    at com.android.dx.merge.DexMerger.mergeMethodIds(DexMerger.java:491)
    at com.android.dx.merge.DexMerger.mergeDexes(DexMerger.java:168)
    at com.android.dx.merge.DexMerger.merge(DexMerger.java:189)
    at com.android.dx.command.dexer.Main.mergeLibraryDexBuffers(Main.java:454)
    at com.android.dx.command.dexer.Main.runMonoDex(Main.java:303)
    at com.android.dx.command.dexer.Main.run(Main.java:246)
    at com.android.dx.command.dexer.Main.main(Main.java:215)
    at com.android.dx.command.Main.main(Main.java:106)
Error:Execution failed for task ':app:dexDebug'.
> com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command 'C:\Program Files\Java\jdk1.7.0_72\bin\java.exe'' finished with non-zero exit value 2

这是我的依赖项:

android {
    compileSdkVersion 22
    buildToolsVersion "22.0.1"

    defaultConfig {
        minSdkVersion 14
        versionCode 2
        versionName "1.0.1"
    }
dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:22.2.0'
    compile 'com.android.support:support-v13:22.0.0'
    compile 'com.android.support:appcompat-v7:22.0.0'
    compile 'com.android.support:support-v4:22.0.0'
    compile 'com.google.android.gms:play-services:8.1.0'
    compile ('org.bouncycastle:bcprov-jdk16:1.46')
    compile ('com.nineoldandroids:library:2.4.0')
    compile ('commons-lang:commons-lang:2.6')
    compile ('com.google.zxing:core:3.2.0')
}

我也删除了所有库,因为我虽然他们可能有谷歌播放8.1.0的问题,但没有改变。我也尝试从所有编译中排除com.google.android.gms:play-services,但它也没有用。

2 个答案:

答案 0 :(得分:2)

首先,请注意依赖关系阻止 您使用的是同一个库的不同版本,可能是不必要的依赖项。

在任何情况下都使用相同的版本

dependencies{
    compile 'com.android.support:appcompat-v7:22.2.0'
    compile 'com.android.support:support-v13:22.0.0'   ARE YOU SURE?
    compile 'com.android.support:appcompat-v7:22.0.0'  TWICE ? REMOVE IT
    compile 'com.android.support:support-v4:22.0.0'    APPCOMPAT contains it. REMOVE IT.
}

如果问题仍然存在,那么您的方法太多了。 dex 只能有 65536种方法。

  

意外的顶级例外:
  com.android.dex.DexIndexOverflowException:方法ID不在[0,0xffff]中:65536

由于gradle插件0.14.0和Build Tools 21.1.0,您可以使用multidex support

只需在build.gradle

中添加这些行
android {

    defaultConfig {
        ...

        // Enabling multidex support.
        multiDexEnabled true
    }
    ...
}

dependencies {
  compile 'com.android.support:multidex:1.0.0'
}

同样在您的Manifest中,将多索引支持库中的MultiDexApplication类添加到应用程序元素

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.android.multidex.myapplication">
    <application
        ...
        android:name="android.support.multidex.MultiDexApplication">
        ...
    </application>
</manifest>

如果您使用的是自己的Application课程,请将父课程从Application更改为MultiDexApplication

答案 1 :(得分:1)

检查你的代码.. 依赖性{

编译fileTree(dir:&#39; libs&#39;,include:[&#39; * .jar&#39;])

**compile 'com.android.support:appcompat-v7:22.2.0'**
compile 'com.android.support:support-v13:22.0.0'
**compile 'com.android.support:appcompat-v7:22.0.0'**
compile 'com.android.support:support-v4:22.0.0'
compile 'com.google.android.gms:play-services:8.1.0'
compile ('org.bouncycastle:bcprov-jdk16:1.46')
compile ('com.nineoldandroids:library:2.4.0')
compile ('commons-lang:commons-lang:2.6')
compile ('com.google.zxing:core:3.2.0')

}

如果在代码中实现了两次任何库,那么

会出现非零退出值2错误。 compile&#39; com.android.support:appcompat-v7:22.0.0&#39; 编译&#39; com.android.support:appcompat-v7:22.2.0&#39; 请删除其中一个。

还要检查“libs”中的其他库。夹。这对我有用。希望这会对你有所帮助。