Skip to content

Commit 2791ab2

Browse files
authored
pin the functions SDK version (#607)
1 parent 72490b9 commit 2791ab2

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

‎build.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ fun isBlockListed(candidate: ModuleComponentIdentifier): Boolean {
3333
"com.applovin:applovin-sdk",
3434
"com.ironsource.sdk:mediationsdk",
3535
"com.google.guava",
36-
"com.github.bumptech.glide"
36+
"com.github.bumptech.glide",
37+
// TODO(thatfiredev): remove functions once https://github.com/firebase/firebase-android-sdk/issues/6522 is fixed
38+
"com.google.firebase:firebase-functions"
3739
).any { keyword ->
3840
keyword in candidate.toString().lowercase()
3941
}

‎functions/app/build.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,7 @@ dependencies {
4040

4141
// Add the dependency for the Cloud Functions library
4242
// When using the BoM, you don't specify versions in Firebase library dependencies
43-
implementation("com.google.firebase:firebase-functions")
43+
// TODO(thatfiredev): remove the pinned dependency version when
44+
// https://github.com/firebase/firebase-android-sdk/issues/6522 is fixed
45+
implementation("com.google.firebase:firebase-functions:21.0.0")
4446
}

0 commit comments

Comments
 (0)