mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-10-08 18:31:07 +03:00
Issue warnings for debuggable apks
This commit is contained in:
parent
ce19ba1c29
commit
94a33f0a04
2 changed files with 20 additions and 0 deletions
|
@ -329,6 +329,10 @@ def main():
|
|||
print " WARNING: no SDK version information found"
|
||||
thisinfo['sdkversion'] = 0
|
||||
|
||||
# Check for debuggable apks...
|
||||
if common.isApkDebuggable(apkfile):
|
||||
print "WARNING: {0} is debuggable... {1}".format(apkfile, line)
|
||||
|
||||
# Calculate the md5 and sha256...
|
||||
m = hashlib.md5()
|
||||
sha = hashlib.sha256()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue