Does the Android ART runtime have the same method limit limitations as Dalvik?
问题 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 回答1: The issue is not with the Dalvik runtime nor the DEX file format, but with the current set of Dalvik instructions. Specifically, the various method invocation methods, which look like this: invoke-kind {vC, vD, vE, vF, vG}, meth@BBBB B: method reference index (16 bits) You can reference a very large number of methods in a DEX file, but you can