android - How to view AndroidManifest.xml from APK file? -


is possible view androidmanifest.xml file?

i changed extension of apk file zip. zip file contains androidmanifest.xml file. unable view contents of androidmanifest.xml. encrypted.

how can view androidmanifest.xml file?

yes can view xml files of android apk file. there tool this: android-apktool

it tool reverse engineering 3rd party, closed, binary android apps

how on windows system:

  1. download apktool-install-windows-* file
  2. download apktool-* file
  3. unpack both windows directory

now copy apk file in directory , run following command in command prompt:

apktool d helloworld.apk ./helloworld 

this create directory "helloworld" in current directory. inside can find androidmanifest.xml file in decrypted format, , can find other xml files inside "helloworld/res/layout" directory.

here helloworld.apk android apk file.

see below screen shot more information: alt text


Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

html - Instapaper-like algorithm -

c# - How to execute a particular part of code asynchronously in a class -