概述
aapt是Android asset package tools,利用aapt命令可以很方便的查看app包信息。
linux下安装配置aapt:先下载aapt,然后放入/usr/bin目录,并改变权限为可执行文件。
aapt帮助,以下截图说的很清楚。
aapt dump badging xxx.apk
有的系统在使用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命令,产生上面截图一样的结果了。
最后
以上就是魔幻学姐为你收集整理的aapt查看apk应用信息的全部内容,希望文章能够帮你解决aapt查看apk应用信息所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复