Android方法數超出限定的問題(multiDex,jumboMode)

在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

關於dexoptionsjumboMode在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:

  • It is different. You use the java language to write your code, but the compiler don't produce *.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.
    To be clear: a dex file in android is the equivalent of class in standard java.
    So 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 :
    • targetAPILevel
    • force-jumbo mode (when enabled it allows a larger number of strings in the dex files)

在標準Java的世界
  當編譯java代碼時,編譯器生成.class文件。.class文件包含了java的字節碼。這些字節碼在JVM中執行。

在安卓的世界則不一樣:

  • 用java語音寫安卓的代碼,可是編譯器生成的是.dex文件,不是.java文件。.dex文件包含了在Android虛擬機中能夠執行的字節碼,而不是JVM。因此.dex文件的做用和標準Java中的.class文件差很少。
    dexoptions是一個gradle對象,這個對象用來設置從java代碼向.dex文件轉化的過程當中的一些配置選項。其中一個就是force-jumbo mode。force-jumbo mode容許你建立更大的.dex文件。

參考資料:

  1. https://segmentfault.com/a/1190000004187484
  2. https://stackoverflow.com/questions/24224186/what-is-dex-in-gradle/24224385#24224385
  3. http://google.github.io/android-gradle-dsl/current/com.android.build.gradle.internal.dsl.DexOptions.html
相關文章
相關標籤/搜索