Home | History | Annotate | only in /external/dexmaker
Up to higher level directory
NameDateSize
Android.mk13-Nov-2012912
build.xml13-Nov-20121.9K
CleanSpec.mk13-Nov-20122.2K
COPYING13-Nov-201211.1K
javadoc/13-Nov-2012
lib/13-Nov-2012
MODULE_LICENSE_APACHE213-Nov-20120
NOTICE13-Nov-201211.1K
README13-Nov-2012952
src/13-Nov-2012

README

      1 This folder contains the dexmaker library.
      2 
      3 The latest version of dexmaker can be found at this url:
      4     http://code.google.com/p/dexmaker/
      5 
      6 Version: b4fdb175545f
      7 License: Apache 2.0
      8 
      9 Description:
     10 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.
     11 
     12 It 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.
     13 
     14 It 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.
     15 
     16 Local Modifications:
     17 No modifications.
     18 
     19