反编译[学习笔记]

One step tool: //https://github.com/ufologist/onekey-decompile-apk
create the xxxx.apk.jar and the folder

** Get resource files, pictures, values, strings..... :
java -jar apktool_2.0.0rc4.jar d xxxx.apk
java -jar apktool_2.0.2.jar d xxxx.apk

** Get the class files:
Decompress the xxxx.apk.jar which generated by the tool, and then get the class files.

** Get Java files:
1. Get the class files from the apk:
2. decompile:
jad -o -r -sjava -dsrc xxxx-classcom***.class

原文地址:https://www.cnblogs.com/lionfight/p/5140203.html