Home | History | Annotate | only in /cts/tools/dex-tools
Up to higher level directory
NameDateSize
Android.mk05-Oct-2017885
dex/05-Oct-2017
README.txt05-Oct-2017869
src/05-Oct-2017
test/05-Oct-2017
TODO.txt05-Oct-2017239

README.txt

      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  
     30