mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-16 16:02:33 +03:00
Detect proprietary youtube api lib
This commit is contained in:
parent
33a95637c0
commit
5ce730a3a0
1 changed files with 3 additions and 2 deletions
|
@ -1514,7 +1514,7 @@ def scan_source(build_dir, root_dir, thisbuild):
|
||||||
|
|
||||||
problems = []
|
problems = []
|
||||||
|
|
||||||
# Common known non-free blobs:
|
# Common known non-free blobs (always lower case):
|
||||||
usual_suspects = ['flurryagent',
|
usual_suspects = ['flurryagent',
|
||||||
'paypal_mpl',
|
'paypal_mpl',
|
||||||
'libgoogleanalytics',
|
'libgoogleanalytics',
|
||||||
|
@ -1524,7 +1524,8 @@ def scan_source(build_dir, root_dir, thisbuild):
|
||||||
'google-play-services',
|
'google-play-services',
|
||||||
'crittercism',
|
'crittercism',
|
||||||
'heyzap',
|
'heyzap',
|
||||||
'jpct-ae']
|
'jpct-ae',
|
||||||
|
'youtubeandroidplayerapi']
|
||||||
|
|
||||||
if 'scanignore' in thisbuild:
|
if 'scanignore' in thisbuild:
|
||||||
ignore = [p.strip() for p in thisbuild['scanignore'].split(';')]
|
ignore = [p.strip() for p in thisbuild['scanignore'].split(';')]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue