I\'m working on android app that\'s running up against the dex method count limit. Is there a simple way to show the method count grouped by package?
I can get
Piling on to an old question, I've written a Gradle plugin that will report the number of methods in your APK on every build. It uses the same DEX parsing code that the AOSP project uses. You can find it at https://github.com/KeepSafe/dexcount-gradle-plugin.