APK transform
Pimp my APK
Last updated
Was this helpful?
Pimp my APK
Last updated
Was this helpful?
An .APK file (e.g. Android Package) is a compressed collection of files (i.e. a package) for Android. It could be extracted as an regular archive.
A .DEX file (.e.g Dalvik EXecutable) is an executable file saved in a format that contains compiled code that Android systems can run.
When auditing an APK, transforming it to human-readable formats is usually required.
and are DEX assembler and disassembler respectively
can be used to convert DEX files to .class files (zipped as .jar)
is a DEX to Java decompiler. It can be used in CLI and GUI for producing Java source code out of Android DEX and APK files.