Does the Android ART runtime have the same method limit limitations as Dalvik?

后端 未结 2 1188
自闭症患者
自闭症患者 2020-11-27 12:07

Does the Android ART runtime have the same method limit limitations as Dalvik? Currently, there\'s a limit of 64k methods in the primary dex file

2条回答
  •  清酒与你
    2020-11-27 12:34

    Anwar Ghuloum told in this Android Developers Backstage episode that they're not going to fix the bytecode in the near future.
    Instead, starting from Android L they will natively support multi-dex by collapsing all the dex files (from an APK) into a single oat file.

提交回复
热议问题