问题描述
是否可以查看AndroidManifest.xml文件?我只是改变了扩展的apk文件压缩。这个zip文件包含AndroidManifest.xml文件。但我不能查看的AndroidManifest.xml编码。它的完全加密。如何查看AndroidManifest.xml文件?
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?
推荐答案
是的,你可以查看或 XML解密
的的Android APK的文件
文件。有一个工具 Android的apktool
Yes you can view or decrypt the XML
files of an Android APK
file. There is a tool android-apktool
这是第3次再造的工具 党,封闭的,二进制Android应用程序
如何做到这一点在Windows系统上:
How to do this on your Windows System:
- <一个href="http://$c$c.google.com/p/android-apktool/downloads/detail?name=apktool-install-windows-2.2_r01-3.tar.bz2">Download apktool安装-Windows的*文件
- 下载apktool- *文件
- 既解压到您的Windows目录
- Download apktool-install-windows-* file
- Download apktool-* file
- Unpack both to your Windows directory
现在复制 APK
文件也在该目录,并在命令提示符下运行以下命令:
Now copy the APK
file also in that directory and run the following command in your command prompt:
apktool d HelloWorld.apk ./HelloWorld
这会在当前目录下创建和目录的HelloWorld
。它里面你可以找到以解密的形式的AndroidManifest.xml
文件,你还可以找到其他 XML中的
文件的HelloWorld / RES /布局
目录。
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.
下面 HelloWorld.apk
是你的Android APK文件。
Here HelloWorld.apk
is your Android APK file.
请参阅下面的屏幕截图的详细信息:
See the below screen shot for more information:
这篇关于如何查看AndroidManifest.xml中的APK文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!