Is it possible to view Androidmanifest.xml
file?
I just changed the extension of the apk
file to zip
. This zip
file contains the Androidmanifest.xml
file. But I am unable view the contents of Androidmanifest.xml
. It is fully encrypted.
How can I view the Androidmanifest.xml
file?
Android Studio can now show this. Go to
Build
>Analyze APK...
and select your apk. Then you can see the content of the AndroidManifset file.You can use this command: save to file
AndroidManifest.txt
The AXMLParser and APKParser.jar can also do the job, you can see the link. AXMLParser
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:
There is an online tool that lets you upload an APK It decompiles it and finally lets you to download a zip with all sources, manifest XML file and so on decompiled, all of that without having to install any program on your computer: http://www.javadecompilers.com/apk
Also if you wish just to check on some params you can, by their UI
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.)