6

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
  • 552
  • 4
  • 9
  • 17

2 Answers2

14

Decompiling Android APPs using APKTool

Open command prompt and run below command.

apktool d apkfile ./FolderName

Look Here for More Information.Video Tutorial.

Chirag
  • 56,621
  • 29
  • 151
  • 198
-1

I guess that the content has maybe been obfuscatted. So the XML is not human-readable.

Aerilys
  • 1,628
  • 1
  • 16
  • 22
  • 1
    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. – zapl Sep 05 '12 at 12:10