1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/dexdump.md

21 lines
509 B
Markdown
Raw Normal View History

2019-11-16 07:32:26 +01:00
# dexdump
> Display information about Android DEX files.
> More information: <https://manpages.ubuntu.com/manpages/latest/en/man1/dexdump.1.html>.
2019-11-16 07:32:26 +01:00
- Extract classes and methods from an APK file:
`dexdump {{path/to/file.apk}}`
- Display header information of DEX files contained in an APK file:
`dexdump -f {{path/to/file.apk}}`
- Display the dis-assembled output of executable sections:
`dexdump -d {{path/to/file.apk}}`
- Output results to a file:
`dexdump -o {{path/to/file}} {{path/to/file.apk}}`