Android中aapt命令实践

引言

朋友要查看一个已存在包的versionCode信息,在群里面询问,由于是已经存在的apk包,并且只需要其中的versionCode信息,笔者就给发了一段aapt命令:aapt dump badging 下面针对aapt 命令做一下介绍,之前笔者也对一些常用adb命令也做过介绍:总结一些常用Android adb 命令,了解这些命令以后,可以更方便我们开发,提高开发效率。在这笔者在网上随便下载了一个app作为演示用。

aapt 命令大全

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

badging

Print the label and icon for the app declared in APK.打印APK中声明的应用程序的标签和图标。

Android中aapt命令实践_第1张图片

permissions

Print the permissions from the APK.打印APK中声明的权限信息

Android中aapt命令实践_第2张图片

**resources **

Print the resource table from the APK.打印APK中的资源表

Android中aapt命令实践_第3张图片

configurations

Print the configurations in the APK.打印APK中的配置信息

Android中aapt命令实践_第4张图片

xmltree

Print the compiled xmls in the given assets.打印指定apk的指定xml文件。

Android中aapt命令实践_第5张图片

xmlstrings

Print the strings of the given compiled xml assets.打印xml文件中所有的字符串信息

Android中aapt命令实践_第6张图片

aapt l[ist] [-v] [-a] file.{zip,jar,apk}

List contents of Zip-compatible archive.列出压缩文件目录

aapt list

Android中aapt命令实践_第7张图片

aapt list -v

会以table的形式输出目录

Android中aapt命令实践_第8张图片

aapt list -a

详细输出所有目录的内容(= aapt list)

其他aapt 命令

aapt r[emove] [-v] file.{zip,jar,apk} file1 [file2 ...]

Delete specified files from Zip-compatible archive.

aapt a[dd] [-v] file.{zip,jar,apk} file1 [file2 ...]

Add specified files to Zip-compatible archive.

aapt v[ersion]

Print program version.

你可能感兴趣的:(Android中aapt命令实践)