An open API service indexing awesome lists of open source software.

https://github.com/dutchcoders/godex

Android DEX file analyzer library. With this go library you can extract metadata from DEX (Dalvik) java class files.
https://github.com/dutchcoders/godex

Last synced: 3 months ago
JSON representation

Android DEX file analyzer library. With this go library you can extract metadata from DEX (Dalvik) java class files.

Awesome Lists containing this project

README

        

# godex
Android DEX file analyzer library. With this go library you can extract metadata from DEX (Dalvik) java class files.

## Usage
```
dex, err := Open("classes.dex")

if err != nil {
t.Errorf("%s", err)
}

dex.Dump()
```

## References
- https://source.android.com/devices/tech/dalvik/dex-format.html
- https://android.googlesource.com/platform/dalvik2/+/master

## Contributions

Contributions are welcome.

## Creators

**Remco Verhoef**
-
-

## Copyright and license

Code and documentation copyright 2011-2014 Remco Verhoef.

Code released under [the MIT license](LICENSE).