mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-24 17:15:32 +02:00
dexdump: add page (#3563)
This commit is contained in:
parent
cee8410010
commit
b0f9ecfdb8
1 changed files with 19 additions and 0 deletions
19
pages/common/dexdump.md
Normal file
19
pages/common/dexdump.md
Normal file
|
@ -0,0 +1,19 @@
|
|||
# dexdump
|
||||
|
||||
> Display information about Android DEX files.
|
||||
|
||||
- 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}}`
|
Loading…
Add table
Reference in a new issue