Update cheatsheets

This commit is contained in:
ivuorinen
2025-12-31 00:22:26 +00:00
parent 175e6fa7c5
commit 30cc3ddcd1
148 changed files with 228 additions and 183 deletions

View File

@@ -10,16 +10,16 @@ source: https://github.com/tldr-pages/tldr.git
- Extract classes and methods from an APK file:
`dexdump {{path/to/file.apk}}`
`dexdump {{path/to/file}}.apk`
- Display header information of DEX files contained in an APK file:
`dexdump -f {{path/to/file.apk}}`
`dexdump -f {{path/to/file}}.apk`
- Display the dis-assembled output of executable sections:
`dexdump -d {{path/to/file.apk}}`
`dexdump -d {{path/to/file}}.apk`
- Output results to a file:
`dexdump -o {{path/to/file}} {{path/to/file.apk}}`
`dexdump -o {{path/to/file}} {{path/to/file}}.apk`