1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-11 23:23:27 +02:00

Helpful error message when aapt missing

This commit is contained in:
Ciaran Gultnieks 2013-06-17 21:49:43 +01:00
parent 6be27ed572
commit 9b28d1ef1c

View File

@ -266,7 +266,10 @@ def scan_apks(apps, apkcache, repodir, knownapks):
thisinfo['size'] = os.path.getsize(apkfile)
thisinfo['permissions'] = []
thisinfo['features'] = []
p = subprocess.Popen([os.path.join(sdk_path, 'platform-tools', 'aapt'),
if not os.path.exists(aapt_path):
print "Missing aapt - check aapt_path in your config"
sys.exit(1)
p = subprocess.Popen([aapt_path,
'dump', 'badging', apkfile],
stdout=subprocess.PIPE)
output = p.communicate()[0]