• Home
Name Date Size #Lines LOC

..--

javadoc/03-May-2024-7,7526,525

lib/03-May-2024-

src/03-May-2024-63,95432,426

Android.mkD03-May-2024912 286

COPYINGD03-May-202411.1 KiB203169

CleanSpec.mkD03-May-20242.2 KiB500

MODULE_LICENSE_APACHE2D03-May-20240

NOTICED03-May-202411.1 KiB203169

READMED03-May-2024952 1911

build.xmlD03-May-20241.9 KiB5346

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: b4fdb175545f
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:
17No modifications.
18
19