mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-23 15:51:45 +00:00
Update cheatsheets
This commit is contained in:
25
dexdump
Normal file
25
dexdump
Normal file
@@ -0,0 +1,25 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# dexdump
|
||||
|
||||
> Display information about Android DEX files.
|
||||
> More information: <https://manned.org/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}}`
|
||||
Reference in New Issue
Block a user