1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-11-14 11:00:10 +01:00

Merge branch 'warn_on_aar' into 'master'

scanner: warn on aar files

See merge request !332
This commit is contained in:
Hans-Christoph Steiner 2017-09-12 15:29:29 +00:00
commit 7513432a41

View File

@ -200,6 +200,9 @@ def scan_source(build_dir, build):
count += handleproblem('usual supect \'%s\'' % name, path_in_build_dir, filepath)
warnproblem('JAR file', path_in_build_dir)
elif ext == 'aar':
warnproblem('AAR file', path_in_build_dir)
elif ext == 'java':
if not os.path.isfile(filepath):
continue