HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

dexdump — Display information about Android DEX files. More information: <https://manned.org/man/debian-stretc

Submitted by: @import:tldr-pages··
0
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}}.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

Code Snippets

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

Context

tldr-pages: common/dexdump

Revisions (0)

No revisions yet.