Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to view Androidmanifest.xml file? I just changed the extension for apk file to zip. This zip file contains Androidmanifest.xml file. But I cant view the Androidmanifest.xml coding. Its fully encrypted. How to view the Androidmanifest.xml file?

share|improve this question
Hi to my knowledge it is not possible, what informations are you trying to get ? – Jason Rogers Nov 16 '10 at 6:43
I have one APK file. I need to view the Androidmanifest.xml file. because i used one framework. That APK file also used same framework. So i need to see how to configure the Androidmanifest file from that APK file. – bharath Nov 16 '10 at 6:48
@Jason Rogers: AFAIK you can view that information. See this – Vikas Patidar Feb 22 '11 at 12:54

4 Answers

up vote 55 down vote accepted

Yes you can view or decrypt the XML files of an Android APK file. There is a tool android-apktool

It is a tool for reengineering 3rd party, closed, binary Android apps

How to do this on your Windows System:

  1. Download apktool-install-windows-* file
  2. Download apktool-* file
  3. Unpack both to your Windows directory

Now copy the APK file also in that directory and run the following command in your command prompt:

apktool d HelloWorld.apk ./HelloWorld

This will create and directory "HelloWorld" in your current directory. Inside it you can find the AndroidManifest.xml file in decrypted form and you can also find other XML files inside the "HelloWorld/res/layout" directory.

Here HelloWorld.apk is your Android APK file.

See the below screen shot for more information: alt text

share|improve this answer
5  
This is nice, but I'd like to know how to just look at the AndroidManifest.xml without having to download all of this. Is it encrypted or compressed? – JohnnyLambada Jan 15 '11 at 0:59
1  
@JohnnyLambada: Yes you can open and view it in a archiving tool like: WinRar/WinZip/7Zip but it make no sense because it is in encrypted form. – Vikas Patidar Feb 19 '11 at 9:24
is it possible to decrypt , change it a bit (for example the minSdkVersion) , and then put it back into the apk ? – android developer Jul 13 '12 at 8:25
1  
The apktool is deprecated. Better refer to their project homepage for latest version. – Deqing Jul 25 '12 at 5:49
I get: Exception in thread "main" brut.androlib.AndrolibException: Multiple resources: at brut.androlib.res.data.ResConfig.addResource(Unknown Source) – WindRider Oct 2 '12 at 15:29

You can directly use aapt l -a name.apk command to see the manifest.xml.

This link might help http://elinux.org/Android_aapt

(This will also dump the resource table.)

share|improve this answer
   
This is good one ! – Easwaramoorthy Kanagaraj Oct 25 '12 at 14:57

In this thread, Dianne Hackborn tells us we can get info out of the AndroidManifest using aapt.

I whipped up this quick unix command to grab the version info:

aapt dump badging my.apk | sed -n "s/.*versionName='\([^']*\).*/\1/p"
share|improve this answer

Or install root explorer on your phone , and open the apk with that. choose view. and pick the xml.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.