How to extract apk file from PC?

39,771

Decompiling Android APPs using APKTool

Open command prompt and run below command.

apktool d apkfile ./FolderName

Look Here for More Information.Video Tutorial.

Share:
39,771
Jahir
Author by

Jahir

I am a Student.

Updated on February 15, 2020

Comments

  • Jahir
    Jahir over 4 years

    I am able to extract my application apk file from PC. I am using the steps are 1. Add .zip after myapp.apk.zip

    The APK file has been extracted successfully. But I am not able to see the XML file content.

    The XML file has been incorrect format. This is my application. Learning Purpose Only.

    Thanks.

  • Jahir
    Jahir over 11 years
    Thanks Your video and links are useful to me. Thanks.
  • zapl
    zapl over 11 years
    XML resource files are always stored in a "binary optimized format" or how they called it to reduce the size and accelerate loading. Not intentional obfuscation but you can't read it without undoing the optimization.