当前位置:  开发笔记 > 编程语言 > 正文

错误:com.android.dex.DexIndexOverflowException:方法ID不在[0,0xffff]中:65536

如何解决《错误:com.android.dex.DexIndexOverflowException:方法ID不在[0,0xffff]中:65536》经验,为你挑选了1个好方法。

这是我的build.gradle

android {
    ...
    }
    compileSdkVersion 23
    buildToolsVersion "23.0.1"
    defaultConfig {
        ...
        minSdkVersion 19
        targetSdkVersion 23
        versionCode 2
        versionName "1.4.0"
        multiDexEnabled = true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            signingConfig signingConfigs.config
        }
    }
}

repositories {
    mavenCentral()
    flatDir {
        dirs 'libs'
    }
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    testCompile 'junit:junit:4.12'
    compile(name: 'identitytoolkit-api11', ext: 'aar')
    compile 'com.android.support:appcompat-v7:23.1.1'
    compile 'com.android.support:design:23.1.1'
    compile 'com.google.android.gms:play-services:8.3.0'
    compile ([group: 'com.google.api-client', name: 'google-api-client-android', version: '1.21.0'])
    compile 'com.android.support:multidex:1.0.0'
}

我收到此错误:

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_80\bin\java.exe'' finished with non-zero exit value 2

我使用谷歌端点,并使用此doc生成API库. 并将jar文件包含到libs文件夹中.

我收到此错误,我甚至不知道如何获取更多信息以及如何做到这一点.

解决方案:

android {
    ...
    }
    compileSdkVersion 23
    buildToolsVersion "23.0.1"
    defaultConfig {
        ...
        minSdkVersion 19
        targetSdkVersion 23
        versionCode 2
        versionName "1.4.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            signingConfig signingConfigs.config
        }
    }
}

repositories {
    mavenCentral()
    flatDir {
        dirs 'libs'
    }
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    testCompile 'junit:junit:4.12'
    compile(name: 'identitytoolkit-api11', ext: 'aar')
    compile 'com.android.support:appcompat-v7:23.1.1'
    compile 'com.android.support:design:23.1.1'
    compile 'com.google.android.gms:play-services-maps:8.3.0'
    compile ([group: 'com.google.api-client', name: 'google-api-client-android', version: '1.21.0'])
}

thanassis.. 5

在我的情况下,我刚刚更换

compile 'com.google.android.gms:play-services:8.3.0'

compile 'com.google.android.gms:play-services-maps:8.3.0'

因为包括超过65K的方法.



1> thanassis..:

在我的情况下,我刚刚更换

compile 'com.google.android.gms:play-services:8.3.0'

compile 'com.google.android.gms:play-services-maps:8.3.0'

因为包括超过65K的方法.

推荐阅读
coco2冰冰
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有