Introducing dexinfo Gradle plugin
18 Jul 2015
This was originally published on the Mutual Mobile blog. I’m re-posting it here for posterity.
As applications are getting increasingly complex, more and more Android developers are running into the DEX 64K limit. I covered this topic–and how to work your way around it–in a previous post, so make sure you read it if you haven’t done so already.
Most developers don’t worry about this limit while working on their apps, and then end up spending a lot of time and effort to resolve it. We believe that prevention is better than finding a cure. Before you choose to bring a cool library into your code base, one of the things you should seriously consider is how many methods it adds to your application.
To date, we’ve had multiple ways of counting the methods in an application, like this one by Jake Wharton and this one by Mihai Parparita. However, my colleague, James Ayvaz and I thought we can make things easier by providing this functionality in the form of a Gradle plugin that you can simply integrate into your application. Today, we are happy to announce the plugin is publicly available!
How to use it
Add the dexinfo plugin in your app’s build.gradle
file -
Apply the plugin after the com.android.application
or com.android.library
plugins -
Build your apk
Run the dexinfo task
Sample output
You can also specify various options like how far into package paths the count should be reported for, get the count for a specific package, get count only for referenced methods, etc. We’ve been using this internally for some time now and have already saved a lot of time in the process, we hope you’ll find it useful too.
Check it out on GitHub for more information, and remember that pull requests are always welcome!