Name | Date | Size | |
---|---|---|---|
.. | 05-Nov-2014 | 4 KiB | |
.gitignore | 05-Nov-2014 | 116 | |
baksmali/ | 05-Nov-2014 | 4 KiB | |
build.gradle | 05-Nov-2014 | 4.9 KiB | |
deodexerant/ | 05-Nov-2014 | 4 KiB | |
dexlib2/ | 05-Nov-2014 | 4 KiB | |
examples/ | 05-Nov-2014 | 4 KiB | |
extract-property.xslt | 05-Nov-2014 | 254 | |
gradle/ | 05-Nov-2014 | 4 KiB | |
gradle.properties | 05-Nov-2014 | 22 | |
gradlew | 05-Nov-2014 | 5 KiB | |
gradlew.bat | 05-Nov-2014 | 2.3 KiB | |
NOTICE | 05-Nov-2014 | 6.5 KiB | |
README.md | 05-Nov-2014 | 1.2 KiB | |
scripts/ | 05-Nov-2014 | 4 KiB | |
settings.gradle | 05-Nov-2014 | 79 | |
smali/ | 05-Nov-2014 | 4 KiB | |
smali-integration-tests/ | 05-Nov-2014 | 4 KiB | |
util/ | 05-Nov-2014 | 4 KiB |
README.md
1### About 2 3smali/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 5The 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)