We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ff015b commit 49bcffeCopy full SHA for 49bcffe
build.gradle
@@ -32,21 +32,21 @@ allprojects {
32
}
33
34
35
- def isBlackListed = { candidate ->
36
- def blacklist = [
+ def isBlocked = { candidate ->
+ def blocklist = [
37
'androidx.browser:browser',
38
'com.facebook.android',
39
'com.google.guava',
40
'com.github.bumptech.glide'
41
]
42
- return blacklist.any { word ->
+ return blocklist.any { word ->
43
return candidate.toString().contains(word)
44
45
46
47
dependencyUpdates {
48
rejectVersionIf {
49
- isNonStable(it.candidate) || isBlackListed(it.candidate)
+ isNonStable(it.candidate) || isBlocked(it.candidate)
50
51
52
0 commit comments