当前位置:网站首页>Apk decompiled method (not confused)

Apk decompiled method (not confused)

2022-06-25 00:21:00 BY-91

Tools needed

 Insert picture description here
Download address :

 link :https://pan.baidu.com/s/1kEvmRyTQUp7ujnvsfELJZA 
 Extraction code :sb8m 
 Copy this content after opening baidu network disk mobile phone App, It is more convenient to operate 
  1. apktool Resource file access , You can extract the image file and layout file for use and view
  2. dex2jar take apk Decompile to java Source code , take classes.dex Turn it into .jar file
  3. jd-gui see APK in classes.dex Transformed into .jar file , That is, source files

Decompile method process

  • Download the above 3 Tools and decompilers apk Put it all in one folder
     Insert picture description here
  • apktool command , obtain apk China Resources
  • stay apktool_2.5.0.jar The directory where it is executed cmd command
  • MMTS Is the custom decompiled folder Directory
  • take D:\ac\decompile\apk\Auto_4.6.7.607329_signed.apk Through execution apktool Of jar The file command is decompiled into MMTS File directory
java -jar D:\ac\decompile\apktool_2.5.0.jar d -f D:\ac\decompile\apk\Auto_4.6.7.607329_signed.apk -o MMTS

 Insert picture description here

  • Decompress the apk, Take what you get class.dex Files in dex2jar In the folder , And implement dj2-dex2jar.bat file
  • dj2-dex2jar.bat Execute under folder cmd command
d2j-dex2jar classes.dex

 Insert picture description here
 Insert picture description here
 Insert picture description here
 Insert picture description here

  • Use jd-gui.exe View the generated jar File source code
     Insert picture description here
     Insert picture description here
原网站

版权声明
本文为[BY-91]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/02/202202210550382519.html