Make dump xmltree and dump badging silent again

This commit is contained in:
Daniel Martí 2014-12-31 16:34:11 +01:00
parent d9c6609925
commit e39602586f
2 changed files with 3 additions and 2 deletions

View file

@ -1598,7 +1598,8 @@ def isApkDebuggable(apkfile, config):
:param apkfile: full path to the apk to check"""
p = SdkToolsPopen(['aapt', 'dump', 'xmltree', apkfile, 'AndroidManifest.xml'])
p = SdkToolsPopen(['aapt', 'dump', 'xmltree', apkfile, 'AndroidManifest.xml'],
output=False)
if p.returncode != 0:
logging.critical("Failed to get apk manifest information")
sys.exit(1)