Android 反编译工具

2019-07-16  本文已影响0人  iOSDevLog
apktool d ~/path/to/apk_to_decompile.apk
sh d2j-dex2jar.sh -f ~/path/to/apk_to_decompile.apk
java -jar jd-gui-x.y.z.jar

Apktool

https://ibotpeaches.github.io/Apktool/install/

Quick Check

  1. Is at least Java 1.8 installed?
  2. Does executing java -version on command line / command prompt return 1.8 or greater?
  3. If not, please install Java 8+ and make it the default. (Java 7 will also work at this time)

Installation for Apktool

Note - Wrapper scripts are not needed, but helpful so you don’t have to type java -jar apktool.jar over and over.

apktool ~/path/to/apk_to_decompile.apk

dex2jar

https://github.com/pxb1988/dex2jar/releases

Usage

sh d2j-dex2jar.sh -f ~/path/to/apk_to_decompile.apk

And the output file will be apk_to_decompile-dex2jar.jar.

JD-GUI

java -jar jd-gui-x.y.z.jar
image.png
上一篇 下一篇

猜你喜欢

热点阅读