1URL: https://github.com/crittercism/dexmaker/ 2Version: 2.2.0 3License: Apache 2.0 4Description: 5Dexmaker is a Java-language API for doing compile time or runtime code generation targeting the Dalvik VM. Unlike cglib or ASM, this library creates Dalvik .dex files instead of Java .class files. 6 7It has a small, close-to-the-metal API. This API mirrors the Dalvik bytecode specification giving you tight control over the bytecode emitted. Code is generated instruction-by-instruction; you bring your own abstract syntax tree if you need one. And since it uses Dalvik's dx tool as a backend, you get efficient register allocation and regular/wide instruction selection for free. 8 9It includes a stock code generator for class proxies. If you just want to do AOP or class mocking, you don't need to mess around with bytecodes. 10 11Local Modifications: 12 Support mocking of package private classes using dexmaker.share_classloader 13 Scan for methods in extra interface hierarchy 14 Update stack trace cleaner to use new dex package name 15