Reputation: 10977
I know there is a dex method count limit of 65k. I got an APK that contains 64k methods in its dex and I can install and run it just fine on and Android 4+ device, but not on an Android 2.3 device. Is there a different dex method count limit in older Android versions?
Upvotes: 2
Views: 257
Reputation: 95628
On 2.x there is a 5MB dexopt buffer limit. You are probably hitting that and not the "number of methods" limit. See Running apps containing large amount of code
Upvotes: 1