aapt查看apk应用信息

aapt是Android asset package tools,利用aapt命令可以很方便的查看app包信息。

linux下安装配置aapt:先下载aapt,然后放入/usr/bin目录,并改变权限为可执行文件。

aapt查看apk应用信息_第1张图片

aapt帮助,以下截图说的很清楚。

aapt查看apk应用信息_第2张图片

aapt dump badging xxx.apk

aapt查看apk应用信息_第3张图片

有的系统在使用aapt命令时会提示缺失libstdc++.so库文件,可以通过yum方式安装。安装过程中可能会遇到多版本冲突。

[root@lpp-01 8af7892461df5c530161e1139fc60004]# aapt dump badging test2455.shenqi.releasekey.apk 
aapt: error while loading shared libraries: libstdc++.so.6: cannot open shared object file: No such file or directory
[root@lpp-01 8af7892461df5c530161e1139fc60004]# yum whatprovides libstdc++.so.6
libstdc++-4.4.7-18.el6.i686 : GNU Standard C++ Library
Repo        : base
Matched from:
Other       : libstdc++.so.6

[root@lpp-01 8af7892461df5c530161e1139fc60004]# yum install libstdc++-4.4.7-18.el6.i686
Loaded plugins: fastestmirror
Setting up Install Process
Loading mirror speeds from cached hostfile
Resolving Dependencies
--> Running transaction check
---> Package libstdc++.i686 0:4.4.7-18.el6 will be installed
--> Processing Dependency: libgcc_s.so.1(GLIBC_2.0) for package: libstdc++-4.4.7-18.el6.i686
       ......此处省略部分打印信息   
       ...you can also use --setopt=protected_multilib=false to remove
       this checking, however this is almost never the correct thing to
       do as something else is very likely to go wrong (often causing
       much more problems).
       
       Protected multilib versions: libstdc++-4.4.7-18.el6.i686 != libstdc++-4.4.7-17.el6.x86_64

解决多版本冲突,可以通过删除原来版本,再安装新版本。也可以安装时指定参数--setopt=protected_multilib=false。

[root@lpp-01 8af7892461df5c530161e1139fc60004]# rpm -e libstdc++-4.4.7-17.el6.x86_64 --nodeps
[root@lpp-01 8af7892461df5c530161e1139fc60004]# yum install libstdc++-4.4.7-18.el6.i686
安装完成即可使用aapt命令,产生上面截图一样的结果了。



你可能感兴趣的:(android)