diff --git a/fdroidserver/common.py b/fdroidserver/common.py index 37caf6fc..325dfea5 100644 --- a/fdroidserver/common.py +++ b/fdroidserver/common.py @@ -1049,6 +1049,10 @@ def scan_source(build_dir, root_dir, thisbuild): msg = 'Found probable non-free blob ' + fp problems.append(msg) + if curfile.endswith('.apk'): + msg = 'Found apk file, which should not be in the source - ' + fp + problems.append(msg) + if curfile.endswith('.java'): for line in file(fp):