博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
android aapt查看apkmenifast信息
阅读量:5829 次
发布时间:2019-06-18

本文共 1500 字,大约阅读时间需要 5 分钟。

hot3.png

aapt:Android Asset Packaging Tool , 在SDK的tools/目录下. 该工具可以查看, 创建, 更新ZIP格式的文档附件(zip, jar, apk). 也可将资源文件编译成二进制文件. 同步软件中得到apk信息就是用的这么一个android已经提供好的工具。 [html] view plaincopy 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.

使用aapt dump badging *.apk可以查看这个apk文件的程序名、包名、所用的sdk,程序版本以及权限信息等等。如下: aapt dump bagging EngineeringTest.apk 得到如下详细信息 [html] view plaincopy package: name='com.archermind.engineeringtest' versionCode='1' versionName='1.0'

sdkVersion:'8'
application-label:'EngineeringTest'
application-icon-120:'res/drawable-ldpi/ic_launcher.png'
application-icon-160:'res/drawable-mdpi/ic_launcher.png'
application-icon-240:'res/drawable-hdpi/ic_launcher.png'
application: label='EngineeringTest' icon='res/drawable-mdpi/ic_launcher.png'
launchable-activity: name='com.archermind.engineeringtest.EngineeringTestActivity' label='EngineeringTest' icon=''
uses-permission:'android.permission.INTERNET'
uses-feature:'android.hardware.touchscreen'
main
other-activities
other-receivers
other-services
supports-screens: 'small' 'normal' 'large'
supports-any-density: 'true'
locales: '--_--'
densities: '120' '160' '240'

转载于:https://my.oschina.net/chaloongjir/blog/180521

你可能感兴趣的文章
纯 CSS 利用 label + input 实现选项卡
查看>>
在Openwrt上跑xmpppy
查看>>
git 远程拉去代码 输入用户名密码
查看>>
SQL 强制指定索引加快查询速度
查看>>
勤于思考:IE10不支持检测IE6的代码
查看>>
对01背包的分析与理解(图文)
查看>>
hdu6351 Beautiful Now 杭电第五场 暴力枚举
查看>>
uname 命令
查看>>
Ubuntn16.04+OpenCV3.1+CUDA8.0+cudnn5.1+caffe配置及问题集锦
查看>>
Jenkins发送邮件,邮件正文嵌套的html中文显示乱码
查看>>
Linux 学习 - 用户增删改查 相关操作
查看>>
272 TEX Quotes
查看>>
监控相关总结
查看>>
[转]T-SQL_面试题
查看>>
多重连接的数据库管理工具:Navicat Premium
查看>>
touchscreem
查看>>
shutdown命令
查看>>
ajax的封装
查看>>
[转载]Unity3D编辑器:小技巧之意外崩溃场景未保存怎么办
查看>>
C++ using namespace
查看>>