反编译dex文件的命令和参数解释

反编译dex文件的命令和参数解释:

adb shell dexdump -d -f -h /data/dalvik-cache/data@[email protected]@classes.dex > code.text

-d : disassemble code sections
-f : display summary information from file header
-h : display file header details
-C : decode (demangle) low-level symbol names
-S : compute sizes only

你可能感兴趣的:(Android,-,开发心得)