decompiling DEX into Java sourcecode

后端 未结 17 1431
情歌与酒
情歌与酒 2020-11-22 12:41

How can one decompile Android DEX (VM bytecode) files into corresponding Java sourcecode?

17条回答
  •  被撕碎了的回忆
    2020-11-22 13:05

    This can be done in following five steps:

    This gem does these things for you automatically even the installation of required tools

    1. convert apk file to zip
    2. unzip the file
    3. extract classes.dex from it
    4. use dex to jar to convert classes.dex into jar file
    5. use jadx gui to open the jar file as java source code

提交回复
热议问题