decompiling DEX into Java sourcecode

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

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

17条回答
  •  挽巷
    挽巷 (楼主)
    2020-11-22 13:21

    Android Reverse Engineering is possible . Follow these steps to get .java file from apk file.

    Step1 . Using dex2jar

    • Generate .jar file from .apk file
    • command : dex2jar sampleApp.apk

    Step2 . Decompiling .jar using JD-GUI

    • it decompiles the .class files i.e., we'll get obfuscated .java back from the apk.

提交回复
热议问题