The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 1 | __dex-tools__ |
| 2 | |
| 3 | This project contains the source code and tests for a dex file parser. |
| 4 | The parser is able to read a dex file and to create a datastructure based on it. |
| 5 | It is designed to be fast and close to the spec. |
| 6 | Support for direct navigation to super classes and similar will be implemented in a layer on top of the provided data structure. |
| 7 | |
| 8 | Since this folder contains a .project file, it can be imported directly into eclipse as a java project. |
| 9 | |
| 10 | Feel free to improve! |
| 11 | |
| 12 | _Structure_ |
| 13 | |
| 14 | dex.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 | |