本文主要是介绍com.android.dex.DexIndexOverflowException: Cannot merge new index 66299 into a non-jumbo instruction,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
/*dexOptions { jumboMode true }*/
使用Gradle方式:
如果编译成功,运行提示
com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command '/home/zhaokun/work/jdk1.7.0_71/bin/java'' finished with non-zero exit value 2
可以在工程根目录下运行./gradlew installDebug --stacktrace,或者在IDE窗口Gradle console 发现有下面的提示
com.android.dex.DexIndexOverflowException: Cannot merge new index 65949 into a non-jumbo instruction!
在主工程的build.gradle文件,android{} 内添加如下内容
android.dexOptions {jumboMode = true // javaMaxHeapSize "2g"} Eclipse 中是在project.properties中添加dex.force.jumbo=true
参考:https://www.baidu.com/s?tn=87048150_pg&word=jumboMode%20true
这篇关于com.android.dex.DexIndexOverflowException: Cannot merge new index 66299 into a non-jumbo instruction的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!