Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to extract apk file from PC?

Tags:

android

xml

apk

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.

like image 434
Jahir Avatar asked Sep 05 '12 11:09

Jahir


1 Answers

Decompiling Android APPs using APKTool

Open command prompt and run below command.

apktool d apkfile ./FolderName

Look Here for More Information.Video Tutorial.

like image 83
Chirag Avatar answered Sep 20 '22 04:09

Chirag