Home | History | Annotate | only in /external/dexmaker
Up to higher level directory
NameDateSize
Android.mk11-Dec-20131.2K
bug-10862083.patch11-Dec-2013805
bug-8108255.patch11-Dec-20131.1K
bug-8297640.patch11-Dec-20131.6K
build.xml11-Dec-20132.5K
CleanSpec.mk11-Dec-20132.2K
COPYING11-Dec-201311.1K
javadoc/11-Dec-2013
lib/11-Dec-2013
MODULE_LICENSE_APACHE211-Dec-20130
NOTICE11-Dec-201311.1K
README11-Dec-20131.4K
src/11-Dec-2013

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: f54f6eac0c81120f53265b30adf9ce602e8dfc41
      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 bug-8108255.patch: temporary workaround to ClassLoading issues
     18     (see https://code.google.com/p/dexmaker/issues/detail?id=20)
     19 bug-8297640.patch: temporary workaround for a breakage in object instantiation
     20     (see https://code.google.com/p/dexmaker/issues/detail?id=22)
     21 bug-10862083.patch: Do not assert that InvocationHandler.invoke args should be non-null
     22     (see https://code.google.com/p/dexmaker/issues/detail?id=27)
     23 
     24 (to apply, run 'patch -p0 < bug-xyz.patch' from a fresh src)
     25