Skip to content
This repository has been archived by the owner on May 21, 2024. It is now read-only.

Latest commit

 

History

History
15 lines (12 loc) · 477 Bytes

README.md

File metadata and controls

15 lines (12 loc) · 477 Bytes

wechat-android-study

Decompile WeChat Android source code.

Version 5.4.0.51_r798589

  1. Decompress .apk package
    • unzip wexin-xxx.apk
  2. Use androguard to convert manifest xml to readable text file:
    • python androaxml.py -i AndroidManifest.xml -o output.xml
  3. Use dex2jar to convert .dex to .jar:
    • brew install dex2jar
    • dex2jar classes.dex
  4. Use JD to decompile .jar to java code.