Home | History | Annotate | only in /external/smali
Up to higher level directory
NameDateSize
.gitignore20-Sep-201364
baksmali/20-Sep-2013
build.gradle20-Sep-20132.8K
deodexerant/20-Sep-2013
dexlib/20-Sep-2013
examples/20-Sep-2013
extract-property.xslt20-Sep-2013254
gradle/20-Sep-2013
gradle.properties20-Sep-201322
gradlew20-Sep-20135K
gradlew.bat20-Sep-20132.3K
NOTICE20-Sep-20136.5K
README.md20-Sep-20131.2K
scripts/20-Sep-2013
settings.gradle20-Sep-201345
smali/20-Sep-2013
smali-integration-tests/20-Sep-2013
util/20-Sep-2013
version20-Sep-20136

README.md

      1 ### About
      2 
      3 smali/baksmali is an assembler/disassembler for the dex format used by dalvik, Android's Java VM implementation. The syntax is loosely based on Jasmin's/dedexer's syntax, and supports the full functionality of the dex format (annotations, debug info, line info, etc.)
      4 
      5 The primary webpage is http://smali.googlecode.com, and the source is also mirrored at https://github.com/jesusfreke/smali. If you are interested in submitting a patch, feel free to send me a pull request on either site.
      6 
      7 #### Support
      8 - [googlecode Issue tracker](https://code.google.com/p/smali/issues/list) - For any bugs/issues/feature requests
      9 - [#smali on freenode](http://webchat.freenode.net/?channels=smali) - Free free to drop by and ask a question. Don't expect an instant response, but if you hang around someone will respond. Think of it more in terms of.. multi-player notepad.
     10 
     11 
     12 #### Some useful links for getting started with smali
     13 
     14 - [Official dex bytecode reference](http://s.android.com/tech/dalvik/dalvik-bytecode.html)
     15 - [Registers wiki page](https://code.google.com/p/smali/wiki/Registers)
     16 - [Types, Methods and Fields wiki page](https://code.google.com/p/smali/wiki/TypesMethodsAndFields)
     17 - [Official dex format reference](http://s.android.com/tech/dalvik/dex-format.html)