NameDateSize

..12-Mar-20154 KiB

Android.mk12-Mar-20151.2 KiB

bug-10862083.patch12-Mar-2015805

bug-8108255.patch12-Mar-20151.1 KiB

build.gradle12-Mar-2015473

build.xml12-Mar-20152.5 KiB

CleanSpec.mk12-Mar-20152.2 KiB

COPYING12-Mar-201511.1 KiB

javadoc/12-Mar-20154 KiB

lib/12-Mar-20154 KiB

MODULE_LICENSE_APACHE212-Mar-20150

NOTICE12-Mar-201511.1 KiB

README12-Mar-20151.3 KiB

src/12-Mar-20154 KiB

README

1This folder contains the dexmaker library.
2
3The latest version of dexmaker can be found at this url:
4    http://code.google.com/p/dexmaker/
5
6Version: f54f6eac0c81120f53265b30adf9ce602e8dfc41
7License: Apache 2.0
8
9Description:
10A 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
12It 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
14It 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
16Local Modifications:
17bug-8108255.patch: temporary workaround to ClassLoading issues
18    (see https://code.google.com/p/dexmaker/issues/detail?id=20)
19bug-10862083.patch: Do not assert that InvocationHandler.invoke args should be non-null
20    (see https://code.google.com/p/dexmaker/issues/detail?id=27)
21
22to apply, run 'patch -p0 < bug-xyz.patch' from a fresh src
23to remove, use 'patch -p0 -R < bug-xyz.patch'
24
25