mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-14 23:12:46 +03:00
update: improve warning about APKs set to be debuggable
This uses the actual XML code used to set this flag making the warning message easily searchable on the interwebs.
This commit is contained in:
parent
d68830418b
commit
c81ff764a3
1 changed files with 1 additions and 1 deletions
|
@ -452,7 +452,7 @@ def scan_apks(apps, apkcache, repodir, knownapks):
|
|||
|
||||
# Check for debuggable apks...
|
||||
if common.isApkDebuggable(apkfile, config):
|
||||
logging.warn("{0} is debuggable... {1}".format(apkfile, line))
|
||||
logging.warn('{0} is set to android:debuggable="true"!'.format(apkfile))
|
||||
|
||||
# Calculate the sha256...
|
||||
sha = hashlib.sha256()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue