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:
- download apktool-install-windows-* file
- download apktool-* file
- 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:
Comments
Post a Comment