• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

baksmali/22-Nov-2023-6,5764,114

deodexerant/22-Nov-2023-15165

dexlib2/22-Nov-2023-50,55327,617

examples/22-Nov-2023-624437

gradle/wrapper/22-Nov-2023-76

scripts/22-Nov-2023-17290

smali/22-Nov-2023-37,27828,638

smali-integration-tests/src/22-Nov-2023-144,332142,872

util/22-Nov-2023-6,1803,381

.gitD01-Jan-19700

.gitignoreD22-Nov-2023116 87

NOTICED22-Nov-20236.5 KiB135106

README.mdD22-Nov-20231.2 KiB1711

build.gradleD22-Nov-20234.9 KiB153131

extract-property.xsltD22-Nov-2023254 44

gradle.propertiesD22-Nov-202322 11

gradlewD22-Nov-20235 KiB165122

gradlew.batD22-Nov-20232.3 KiB9166

settings.gradleD22-Nov-202379 11

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)