1__dex-tools__
2
3This project contains the source code and tests for a dex file parser.
4The parser is able to read  a dex file and to create a datastructure based on it.
5It is designed to be fast and close to the spec.
6Support for direct navigation to super classes and similar will be implemented in a layer on top of the provided data structure.
7
8Since this folder contains a .project file, it can be imported directly into eclipse as a java project.
9
10Feel free to improve!
11
12_Structure_
13
14dex.reader
15  |
16  dex   : test data
17  |
18  doc   : dex file spec on which this parser is based
19  |
20  src   : sourcecode of the parser
21  |
22  lib   : dx.jar the jar from the dx tool. Used for in-memory java -> byte code -> dex code -> dex model tests
23  |
24  test  : source code of the small test suite
25  |
26  README.txt : you are here
27  |
28  TODO.txt   : tasks which are still open
29
30