Reversing APKs
An apk file is just a compressed package. It can be converted into a
zip file and extracted to see the files:
cp app_name.apk app_name.zip; unzip app_name.zip -d app_name
Decompilation with Apktool
(Use -s flag to prevent classes.dex file from being disassembled)
apktool d test.apk