chiark / gitweb /
Make dump xmltree and dump badging silent again
[fdroidserver.git] / fdroidserver / common.py
index 72208f5baee9a5195da655568fae36496e10da00..adb3cd616d023508883a7b7b7cbf339497ddfbfd 100644 (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)