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.
- Host: GitHub
- URL: https://github.com/dutchcoders/godex
- Owner: dutchcoders
- License: mit
- Created: 2015-01-27T16:39:46.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-01-28T16:08:28.000Z (over 10 years ago)
- Last Synced: 2024-06-19T04:02:34.909Z (about 1 year ago)
- Language: Go
- Homepage:
- Size: 148 KB
- Stars: 11
- Watchers: 6
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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).