1、安装aapt工具
windows : 下载appt 工具 http://download.csdn.net/detail/c_see/9604440
linux:下载 http://download.csdn.net/detail/c_see/9604445
yum install glibc.i686
yum install zlib.i686
yum install libstdc++.i686
产生错误:
Error: Multilib version problems found. This often means that the root cause is something else and multilib version checking is just pointing out that there is a problem. Eg.: 1. You have an upgrade for libstdc++ which is missing some dependency that another package requires. Yum is trying to solve this by installing an older version of libstdc++ of the different architecture. If you exclude the bad architecture yum will tell you what the root cause is (which package requires what). You can try redoing the upgrade with --exclude libstdc++.otherarch ... this should give you an error message showing the root cause of the problem. 2. You have multiple architectures of libstdc++ installed, but yum can only see an upgrade for one of those arcitectures. If you don't want/need both architectures anymore then you can remove the one with the missing update and everything will work. 3. You have duplicate versions of libstdc++ installed already. You can use "yum check" to get yum show these errors. ...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-17.el6.i686 != libstdc++-4.4.7-16.el6.x86_64 You could try using --skip-broken to work around the problem You could try running: rpm -Va --nofiles --nodigest
执行:
yum update libstdc++-4.4.7-16.el6.x86_64
yum install libstdc++.i686
2.测试aapt
windows:
aapt.exe d badging student-xiaomu-release.apk
linux:
./aapt d badging student-xiaomu-release.apk
3.编写python脚本
#!/usr/bin/env python # -*- coding: utf-8 -*- import os import sys import zipfile import re def getAppBaseInfo(apkpath): #print(apkpath) #检查版本号等信息 output = os.popen("./aapt d badging %s" % apkpath).read() #print(output) #package: name='com.student.xiaomuxc' versionCode='2016062800' versionName='3.2.1' match = re.compile("package: name='(\S+)' versionCode='(\d+)' versionName='(\S+)'").match(output) if not match: raise Exception("can't get packageinfo") packagename = match.group(1) versionCode = match.group(2) versionName = match.group(3) print('packagename:' + packagename) print('versionCode:' + versionCode) print('versionName:' + versionName) def getCurrentDirApk(): for dir in os.walk(os.curdir): for filename in dir[2]: if os.path.splitext(filename)[1] == '.apk': print('find apk:', filename) return filename if __name__ == "__main__": #获得apk名 if len(sys.argv) == 1: apkName = getCurrentDirApk() else: apkName = sys.argv[1] if not apkName: print('can not find apk!!!') exit() getAppBaseInfo(apkName)
