Android dexinfo plugin


Source link: https://github.com/mutualmobile/gradle-dexinfo-plugin

Android dexinfo plugin

This Gradle plugin adds a new task to print out the dex method count of your Android projects without having to install separate tools.

Based on https://github.com/mihaip/dex-method-counts

Usage

Modify your build.gradle file to add a dependency to the plugin.

buildscript {

  repositories {

jcenter()
  
}

  dependencies {

classpath 'com.mutualmobile.gradle.plugins:dexinfo:0.2.0'
  
}
 
}
 

Apply the plugin after the 'com.android.application' or 'com.android.library' plugins

apply plugin: 'com.android.application' apply plugin: 'com.mutualmobile.gradle.plugins.dexinfo' 

Build your apk

> ./gradlew -q assembleDebug 

Run the dexinfo task

> ./gradlew -q dexinfoDebug 

Sample output

<root>: 182  butterknife: 182
 ButterKnife: 48

 Action: 1

 Finder: 22

 1: 3

 2: 3

 3: 3

 Finder[]: 1

 Injector: 2
 ImmutableList: 4
 InjectView: 1
 InjectViews: 1
 OnCheckedChanged: 1
 OnClick: 1
 internal: 99

 Binding: 1

 ButterKnifeProcessor: 22

 CollectionBinding: 12

 Kind: 5

 Kind[]: 1

 DebouncingOnClickListener: 7

 1: 2
 ...  Overall method count: 182
  BUILD SUCCESSFUL 

Additional options

Add the following section to your build.gradle file to specify options

dexinfo {

  maxDepth 2
  packageFilter "org.xmlpull" 
}
 

Where:

includeClasses (boolean)
  Treat classes as packages and provide per-class method counts. One use-case is for protocol buffers where all
  generated code in a package ends up in a single class  maxDepth (int)
  Limit how far into package paths (or inner classes, with includeClasses) counts should be reported for.  packageFilter (String)
  Only consider methods whose fullly qualified name starts with this prefix.  filter (String: all|defined_only|referenced_only)
  Whether to count all methods (the default), just those defined in the input file, or just those that are
  referenced in it. Note that referenced methods count against the 64K method limit too. 

Debugging

Build and install the plugin to your local maven repository

./gradlew build install 

Add mavenLocal() to your Android projects build.gradle

buildscript {

  repositories {

mavenLocal()

jcenter()
  
}
 
}
 

Export debug options to GRADLE_OPTS

export GRADLE_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005 

Run gradle in your Android project

./gradlew dexinfoDebug 

Create a "Remote" run configuration in IntelliJ and connect to the gradle process

Resources

A new canvas drawing library for Android.

Provides useful subclasses from Support Library that work with Data Binding.

A ViewPager implementation that is useful for navigating through views that can be grouped, such as days in a week.

It is a RecyclerView using GridLayoutManager with header layout as ViewPager. Project could be easily customized according to the usages.

Resizable rectangle overlay.

This library lets you to use Dropbox HTTP API v2.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes