src = os.path.join(bindir, src)
# Make sure it's not debuggable...
- if not install and common.isApkDebuggable(src, sdk_path):
+ if not install and common.isApkDebuggable(src):
raise BuildException("APK is debuggable")
# By way of a sanity check, make sure the version and version
lst.reverse()
return lst
-def isApkDebuggable(apkfile, sdk_path):
+def isApkDebuggable(apkfile):
"""Returns True if the given apk file is debuggable
- :param apkfile: full path to the apk to check
- :param sdk_path: path to android sdk (deprecated)"""
+ :param apkfile: full path to the apk to check"""
if ('aapt_path' not in globals()):
# (re-)read configuration
thisinfo['sdkversion'] = 0
# Check for debuggable apks...
- if common.isApkDebuggable(apkfile, sdk_path):
+ if common.isApkDebuggable(apkfile):
print "WARNING: {0} is debuggable... {1}".format(apkfile, line)
# Calculate the md5 and sha256...