How to extract apk file from PC?

I can extract apk file of application from PC. I use the steps: 1. Add .zip after myapp.apk.zip

The apk file was successfully extracted. But I can not see the contents of the XML file.

The XML file was incorrect. This is my app. For training only.

Thank.

+5
source share
2 answers

Decompiling Android APP using APKTool

Open a command prompt and run the command below.

apktool d apkfile ./FolderName

Check here for more information. Video lesson .

+13
source

I guess the content may have been confusing. Thus, XML is not human readable.

0
source

All Articles