Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
baksmali/ | 03-May-2024 | - | 6,576 | 4,114 | ||
deodexerant/ | 03-May-2024 | - | 151 | 65 | ||
dexlib2/ | 03-May-2024 | - | 50,616 | 27,642 | ||
examples/ | 03-May-2024 | - | 624 | 437 | ||
gradle/wrapper/ | 03-May-2024 | - | 7 | 6 | ||
scripts/ | 03-May-2024 | - | 172 | 90 | ||
smali/ | 03-May-2024 | - | 37,278 | 28,638 | ||
smali-integration-tests/src/ | 03-May-2024 | - | 144,332 | 142,872 | ||
util/ | 03-May-2024 | - | 6,180 | 3,381 | ||
.gitignore | D | 03-May-2024 | 116 | 8 | 7 | |
NOTICE | D | 03-May-2024 | 6.5 KiB | 135 | 106 | |
README.md | D | 03-May-2024 | 1.2 KiB | 17 | 11 | |
build.gradle | D | 03-May-2024 | 4.9 KiB | 153 | 131 | |
extract-property.xslt | D | 03-May-2024 | 254 | 4 | 4 | |
gradle.properties | D | 03-May-2024 | 22 | 1 | 1 | |
gradlew | D | 03-May-2024 | 5 KiB | 165 | 122 | |
gradlew.bat | D | 03-May-2024 | 2.3 KiB | 91 | 66 | |
settings.gradle | D | 03-May-2024 | 79 | 1 | 1 |
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)