Android反编译工具与反编译过程问题解决

apktool

https://ibotpeaches.github.io/Apktool/install/
可以查看apk的资源文件

dex2jar

https://github.com/pxb1988/dex2jar
将dex转化为jar的工具

jd-gui

http://jd.benow.ca/
查看jar的代码工具
有时反编译的代码无法再jd-gui上查看这时可以用Luyten。

补充:
jadx工具,直接反编译。可以到处gradle项目,查看非常方便。
https://github.com/skylot/jadx

jd-gui有时候会反编译失败,看不到源码。可以用Luyten来反编译。
https://github.com/deathmarine/Luyten

反编译步骤

dex2jar工具:(现在变得这么高级了,直接就可以了)
sh d2j-dex2jar.sh -f ~/path/to/apk_to_decompile.apk

Permission denied解决方案

sudo chmod +x 缺权限的文件

你可能感兴趣的:(Android反编译工具与反编译过程问题解决)