snippetbashTip
dexdump — Display information about Android DEX files. More information: <https://manned.org/man/debian-stretc
Viewed 0 times
dexdexdumpcommandcliinformationaboutandroiddisplay
Problem
How to use the
dexdump command: Display information about Android DEX files. More information: <https://manned.org/man/debian-stretch/dexdump>.Solution
dexdump — Display information about Android DEX files. More information: <https://manned.org/man/debian-stretch/dexdump>.Extract classes and methods from an APK file:
dexdump {{path/to/file}}.apkDisplay header information of DEX files contained in an APK file:
dexdump -f {{path/to/file}}.apkDisplay the dis-assembled output of executable sections:
dexdump -d {{path/to/file}}.apkOutput results to a file:
dexdump -o {{path/to/file}} {{path/to/file}}.apkCode Snippets
Extract classes and methods from an APK file
dexdump {{path/to/file}}.apkDisplay header information of DEX files contained in an APK file
dexdump -f {{path/to/file}}.apkDisplay the dis-assembled output of executable sections
dexdump -d {{path/to/file}}.apkOutput results to a file
dexdump -o {{path/to/file}} {{path/to/file}}.apkContext
tldr-pages: common/dexdump
Revisions (0)
No revisions yet.