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 but has not been thoroughly tested yet. I plan to write more unit tests, integration tests soon.
Add to your Cargo.toml
:
dex = "0.2.4"
The primary source of documentation for dex format is Android website. Most of the public struct
s, and method
s in this crate have the same names. There are a few examples here to get you started.
mmap
to access the file contents.classes.dex
in the resources folder is from the open-source application ADW launcher. You can find the source code hereAll 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!
There's a TODO list here