浏览代码

dexdump: add page (#3563)

Pierre Rudloff 5 年之前
父节点
当前提交
b0f9ecfdb8
共有 1 个文件被更改,包括 19 次插入0 次删除
  1. 19 0
      pages/common/dexdump.md

+ 19 - 0
pages/common/dexdump.md

@@ -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}}`