解析一个apk需要三个工具:
1.apktool (用于资源文件获取)
2.dex2jar (用于获取源码)
3.jd-gui (用于源码查看)
apktool官网 https://ibotpeaches.github.io/Apktool/
dex2jar官方github仓库 https://github.com/pxb1988/dex2jar
(1)apktool 生成想xml
(2)apk -> .zip
(3)反编译APK ,生成java 代码
首先我们想要比较完整的解析一个apk需要三个工具:
1.apktool (用于资源文件获取)
2.dex2jar (用于获取源码)
3.jd-gui (用于源码查看)
附上链接
apktool官网 https://ibotpeaches.github.io/Apktool/
dex2jar官方github仓库 https://github.com/pxb1988/dex2jar