Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 633 Bytes

README.md

File metadata and controls

24 lines (18 loc) · 633 Bytes

apk2java

A simple Shell script which allows for one step decompilation of apk file via various decompilers. This script was written and tested on Android Tamer project.

Requirements

Apart from the JRE, following tools should be in your PATH:

  • apktool
  • enjarify
  • jad
  • jadx

Usage

Syntax for running the tool:

./apk2java <path_to_apk> <path_to_output_dir>

Example:

./apk2java com.whatsapp.apk /tmp/

If everything goes fine in above example, this tool will save the source in /tmp/com.whatsapp.apk_src/ directory. In case the 2nd argument is skipped, the source is saved in current directory.