查看 AndroidManifest.xml文件


1.Manifest Explorer

裝在Android手機中,用此apk看系統中已安裝應用的AndroidManifest.xml文件:

View Code

 

2.android-apktool

把apk放在PC中,配置好jdk環境后輸入:

java –jar apktool.jar file_path.apk

嫌麻煩的可用第三方集成界面工具:APK改之理

3.aapt

aapt d[ump] [--values] WHAT file.{apk} [asset [asset ...]]

   badging          Print the label and icon for the app declared in APK.

   permissions      Print the permissions from the APK.

   resources        Print the resource table from the APK.

   configurations   Print the configurations in the APK.

   xmltree          Print the compiled xmls in the given assets.

   xmlstrings       Print the strings of the given compiled xml assets

 

查看apk包的packageName、versionCode、applicationLabel、launcherActivity、permission等各種詳細信息

aapt dump badging <file_path.apk>

 

查看權限

aapt dump permissions <file_path.apk>

 

查看資源列表

aapt dump resources <file_path.apk>

 

查看apk配置信息

aapt dump configurations <file_path.apk>

 

查看指定apk的指定xml文件。

a.以樹形結構輸出的xml信息。

aapt dump xmltree <file_path.apk> res/***.xml

如:aapt dump xmltree <file_path.apk> AndroidManifest.xml可查看應用的該文件

b. 輸出xml文件中所有的字符串信息。

aapt dump xmlstrings <file_path.apk> res/***.xml

4.xml-apk-parser  下載

java -jar APKParser.jar <file_path.apk> 可輸出格式化后的該應用的AndroidManifest.xml文件


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM