10 releases

0.5.0 May 31, 2021
0.4.0 Dec 13, 2019
0.3.1 Dec 1, 2019
0.3.0 Nov 29, 2019
0.1.1 Nov 18, 2019

#1480 in Parser implementations

Download history 14/week @ 2024-07-19 56/week @ 2024-07-26 60/week @ 2024-08-02 20/week @ 2024-08-09 44/week @ 2024-08-16 94/week @ 2024-08-23 36/week @ 2024-08-30 244/week @ 2024-09-06 184/week @ 2024-09-13 199/week @ 2024-09-20 430/week @ 2024-09-27 295/week @ 2024-10-04 63/week @ 2024-10-11 75/week @ 2024-10-18 154/week @ 2024-10-25 113/week @ 2024-11-01

473 downloads per month
Used in smali_disassembler

MIT license

295KB
3K SLoC

Dex

Build Status

Dex is a parser for Android's Dex format written completely in Rust.

Most of the functionality to access the data structures in the file is implemented. Test coverage stands at 81% as of v0.3.0

Usage

Add to your Cargo.toml:

dex = "0.4.0"

Documentation

The primary source of documentation for dex format is Android website. Most of the public structs, and methods in this crate have the same names. There are a few examples here to get you started.

Development Notes

  • The library makes use of mmap to access the file contents.
  • scroll is used to parse binary data.
  • The included classes.dex in the resources folder is from the open-source application ADW launcher. You can find the source code here

Running test cases

Some tests contains Java code and require javac and d8. The other option is to open a PR and test using the travis setup.

  • To get d8, you need to install Android SDK and add Android/Sdk/build-tools/<version>/ directory to PATH variable.
  • For javac, you need to install Java.
  • Also, ANDROID_LIB_PATH variable needs to be set in the environment. It should point to the android.jar file in the SDK. (ex: Android/Sdk/platforms/android-<version>/android.jar). This is needed to prevent warnings when running d8.
  • Use cargo install cargo-tarpaulin and run cargo tarpaulin to get test coverage.

Contributing

All contributions are welcome! Feel free to raise issues/PRs on Github if you find a bug, have a question or think something can be improved! Please add a test when you open an PR!

Dependencies

~4MB
~76K SLoC