File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -31,15 +31,21 @@ fun isBlockListed(candidate: ModuleComponentIdentifier): Boolean {
31
31
" androidx.browser:browser" ,
32
32
" com.facebook.android:facebook-android-sdk" ,
33
33
" com.applovin:applovin-sdk" ,
34
- " com.ironsource.sdk:mediationsdk"
34
+ " com.ironsource.sdk:mediationsdk" ,
35
+ " com.google.guava" ,
36
+ " com.github.bumptech.glide"
35
37
).any { keyword ->
36
38
keyword in candidate.toString().lowercase()
37
39
}
38
40
}
39
41
42
+ fun notFromFirebase (candidate : ModuleComponentIdentifier ): Boolean {
43
+ return candidate.group != " com.google.firebase"
44
+ }
45
+
40
46
tasks.withType<DependencyUpdatesTask > {
41
47
rejectVersionIf {
42
- isNonStable(candidate) || isBlockListed(candidate)
48
+ ( isNonStable(candidate) && notFromFirebase(candidate) ) || isBlockListed(candidate)
43
49
}
44
50
}
45
51
You can’t perform that action at this time.
0 commit comments