意外的顶级异常:
unexpected top-level exception:
我尝试在我的 build.gradle 文件中添加 Google Play 商店服务并且同步成功。现在,当我尝试 运行 应用程序时,我在 Android Studio 中遇到以下异常:
UNEXPECTED TOP-LEVEL EXCEPTION:
com.android.dex.DexIndexOverflowException: method ID not in [0, 0xffff]: 65536
at com.android.dx.merge.DexMerger.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:502)
at com.android.dx.command.dexer.Main.runMonoDex(Main.java:334)
at com.android.dx.command.dexer.Main.run(Main.java:277)
at com.android.dx.command.dexer.Main.main(Main.java:245)
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.8.0_60\bin\java.exe'' finished with non-zero exit value 2
在添加播放服务之前,它运行良好。我的 build.gradle 文件如下所示:
buildscript {
repositories {
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath 'io.fabric.tools:gradle:1.+'
}
}
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId 'com.xyz.app'
minSdkVersion 15
targetSdkVersion 23
versionCode 2
versionName "1.0.1"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
}
}
repositories {
mavenCentral()
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:design:23.1.1'
compile 'me.neavo:volley:2014.12.+'
compile 'com.google.code.gson:gson:2.2.+'
compile 'com.facebook.android:facebook-android-sdk:4.7.0'
compile 'com.google.android.gms:play-services:8.4.0'
compile('com.crashlytics.sdk.android:crashlytics:2.5.5@aar') {
transitive = true;
}
}
我在 Google 上搜索了该问题,发现该问题表明超出了 dex 文件中 65,536 个方法的限制
com.android.dex.DexIndexOverflowException: method ID not in [0, 0xffff]: 65536
但是我的项目还不够大。
请告诉我我做错了什么,并提出解决问题的方法。
谢谢
参考这个link.
有时,大型库依赖项也会导致符号大小增加。这个 link 讨论了如何通过类似 proguard 的方式避免 65K 限制。
或者您可以简单地使用 multidexing,它会在达到大符号大小时为您创建 2 个 classes.dex 文件。
您超过了 65K 的最大方法计数限制。
一种解决方案是在 gradle.
中使用 multidex 选项
修改你的build.gradle如下
android {
...
defaultConfig {
...
minSdkVersion 14
targetSdkVersion 23
...
// Enabling multidex support.
multiDexEnabled true
}
...
}
dependencies {
compile 'com.android.support:multidex:1.0.0'
}
其他解决方案是通过混淆器优化您的方法,可以通过
启用
minifyEnabled true
节。
此外,您可以优化依赖项以避免超过 65K 方法计数限制。
查看此 site,获取将插件直接安装到 Android Studio 的说明,它将并排显示 build.gradle 中每个依赖项的方法计数。考虑到这一点,您可以决定保留哪些依赖项以及可以用较少方法的东西替换哪些依赖项。
不要包含整个播放服务依赖项,
替换
compile 'com.google.android.gms:play-services:8.4.0'
仅包含您正在使用的模块。
例如
compile 'com.google.android.gms:play-services-location:8.4.0'
推荐 this 供您参考,
如果您需要将播放服务包含在所有模块中,
参考Radix的回答
基本上这是因为您超出了限制 method.you 有两种解决此错误的方法。
1)减少项目中方法的数量。基本上,您在项目方法中添加的库也计入您的项目方法中。所以不要使用该库的整个包使用你在 project:For 示例中使用的模块 Google 播放你添加的整个包的服务添加你想要使用的模块,如地图等..
2)第二个Enable the multidex for enable multidex :
现在,您需要做的就是在您的应用程序 class:
中覆盖它
public class YouApplication extends Application {
@Override
protected void attachBaseContext(Context base) {
super.attachBaseContext(base);
MultiDex.install(this);
}
}
在你的 gradal 中添加 multidex 支持库
android {
compileSdkVersion 22
buildToolsVersion "23.0.0"
defaultConfig {
minSdkVersion 14 //lower than 14 doesn't support multidex
targetSdkVersion 22
// Enabling multidex support.
multiDexEnabled true
}
}
dependencies {
compile 'com.android.support:multidex:1.0.1'
}
在您的清单中,将 MultiDexApplication class 从 multidex 支持库添加到 application 元素,如下所示
<?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>
希望对您有所帮助....
我尝试在我的 build.gradle 文件中添加 Google Play 商店服务并且同步成功。现在,当我尝试 运行 应用程序时,我在 Android Studio 中遇到以下异常:
UNEXPECTED TOP-LEVEL EXCEPTION:
com.android.dex.DexIndexOverflowException: method ID not in [0, 0xffff]: 65536
at com.android.dx.merge.DexMerger.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:502)
at com.android.dx.command.dexer.Main.runMonoDex(Main.java:334)
at com.android.dx.command.dexer.Main.run(Main.java:277)
at com.android.dx.command.dexer.Main.main(Main.java:245)
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.8.0_60\bin\java.exe'' finished with non-zero exit value 2
在添加播放服务之前,它运行良好。我的 build.gradle 文件如下所示:
buildscript {
repositories {
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath 'io.fabric.tools:gradle:1.+'
}
}
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId 'com.xyz.app'
minSdkVersion 15
targetSdkVersion 23
versionCode 2
versionName "1.0.1"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
}
}
repositories {
mavenCentral()
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:design:23.1.1'
compile 'me.neavo:volley:2014.12.+'
compile 'com.google.code.gson:gson:2.2.+'
compile 'com.facebook.android:facebook-android-sdk:4.7.0'
compile 'com.google.android.gms:play-services:8.4.0'
compile('com.crashlytics.sdk.android:crashlytics:2.5.5@aar') {
transitive = true;
}
}
我在 Google 上搜索了该问题,发现该问题表明超出了 dex 文件中 65,536 个方法的限制
com.android.dex.DexIndexOverflowException: method ID not in [0, 0xffff]: 65536
但是我的项目还不够大。
请告诉我我做错了什么,并提出解决问题的方法。 谢谢
参考这个link.
有时,大型库依赖项也会导致符号大小增加。这个 link 讨论了如何通过类似 proguard 的方式避免 65K 限制。
或者您可以简单地使用 multidexing,它会在达到大符号大小时为您创建 2 个 classes.dex 文件。
您超过了 65K 的最大方法计数限制。 一种解决方案是在 gradle.
中使用 multidex 选项修改你的build.gradle如下
android {
...
defaultConfig {
...
minSdkVersion 14
targetSdkVersion 23
...
// Enabling multidex support.
multiDexEnabled true
}
...
}
dependencies {
compile 'com.android.support:multidex:1.0.0'
}
其他解决方案是通过混淆器优化您的方法,可以通过
启用minifyEnabled true
节。
此外,您可以优化依赖项以避免超过 65K 方法计数限制。 查看此 site,获取将插件直接安装到 Android Studio 的说明,它将并排显示 build.gradle 中每个依赖项的方法计数。考虑到这一点,您可以决定保留哪些依赖项以及可以用较少方法的东西替换哪些依赖项。
不要包含整个播放服务依赖项,
替换
compile 'com.google.android.gms:play-services:8.4.0'
仅包含您正在使用的模块。
例如
compile 'com.google.android.gms:play-services-location:8.4.0'
推荐 this 供您参考,
如果您需要将播放服务包含在所有模块中,
参考Radix的回答
基本上这是因为您超出了限制 method.you 有两种解决此错误的方法。
1)减少项目中方法的数量。基本上,您在项目方法中添加的库也计入您的项目方法中。所以不要使用该库的整个包使用你在 project:For 示例中使用的模块 Google 播放你添加的整个包的服务添加你想要使用的模块,如地图等..
2)第二个Enable the multidex for enable multidex : 现在,您需要做的就是在您的应用程序 class:
中覆盖它public class YouApplication extends Application {
@Override
protected void attachBaseContext(Context base) {
super.attachBaseContext(base);
MultiDex.install(this);
}
}
在你的 gradal 中添加 multidex 支持库
android {
compileSdkVersion 22
buildToolsVersion "23.0.0"
defaultConfig {
minSdkVersion 14 //lower than 14 doesn't support multidex
targetSdkVersion 22
// Enabling multidex support.
multiDexEnabled true
}
}
dependencies {
compile 'com.android.support:multidex:1.0.1'
}
在您的清单中,将 MultiDexApplication class 从 multidex 支持库添加到 application 元素,如下所示
<?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>
希望对您有所帮助....