在Android項目開發中,項目代碼量過大或經過引入不少jar致使代碼量急劇增長,會出現錯誤:html
android.dex.DexIndexOverflowException: Cannot merge new index xxxx into a non-jumbo instruction!
錯誤出現的緣由是 Android設定的方法數是65536個(DEX 64K problem),超過這個方法數,致使dex沒法生成,就沒法生成APK.java
限制緣由: 早期的Dalvik VM內部使用short類型變量來標識方法的id,就有了 最大方法數的限制65536。android
解決方法:git
刪除不用的方法,刪除不使用的jar。github
分包
經過在defaultConfig中設置multiDexEnabled開啓分包模式,分包以後的Dex就低於了限制數,保證了正常的打包。segmentfault
1 defaultConfig { 2 multiDexEnabled=true 3 }
1 android.dexOptions { 2 jumboMode = true 3 }
設置dexOptions的,不作方法數限制的檢查,這樣作的缺點是apk沒法再低版本的設備上面安裝,會出現錯誤:gradle
INSTALL_FAILED_DEXOPT
關於dexoptions
和jumboMode
在stackoverflow中有一段描述:ui
In the standard java world:this
When you compile standard java code : the compiler produce *.class
file. A *.class
file contains standard java bytecode that can be executed on a standard JVM.google
In the Android world:
*.class
files, it produce *.dex
file. A *.dex
file contains bytecode that can be executed on the Android Virtual Machine (dalvik) and this is not a standard Java Virtual Machine.dexoptions
is a gradle object where some options to configure this java-code-to-android-bytecode transformation are defined. The options configured via this object are :
在標準Java的世界
當編譯java代碼時,編譯器生成.class
文件。.class
文件包含了java的字節碼。這些字節碼在JVM中執行。
在安卓的世界則不一樣:
.dex
文件,不是.java
文件。.dex
文件包含了在Android虛擬機中能夠執行的字節碼,而不是JVM。因此.dex
文件的做用和標準Java中的.class文件差很少。dexoptions
是一個gradle對象,這個對象用來設置從java代碼向.dex文件轉化的過程當中的一些配置選項。其中一個就是force-jumbo mode。force-jumbo mode容許你建立更大的.dex
文件。參考資料: