1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-17 10:40:12 +02:00

Detect proprietary youtube api lib

This commit is contained in:
Ciaran Gultnieks 2013-10-09 09:43:02 +01:00
parent 33a95637c0
commit 5ce730a3a0

View File

@ -1514,7 +1514,7 @@ def scan_source(build_dir, root_dir, thisbuild):
problems = []
# Common known non-free blobs:
# Common known non-free blobs (always lower case):
usual_suspects = ['flurryagent',
'paypal_mpl',
'libgoogleanalytics',
@ -1524,7 +1524,8 @@ def scan_source(build_dir, root_dir, thisbuild):
'google-play-services',
'crittercism',
'heyzap',
'jpct-ae']
'jpct-ae',
'youtubeandroidplayerapi']
if 'scanignore' in thisbuild:
ignore = [p.strip() for p in thisbuild['scanignore'].split(';')]