Skip to content

Commit

Permalink
pin the functions SDK version (#607)
Browse files Browse the repository at this point in the history
  • Loading branch information
thatfiredev authored Jan 30, 2025
1 parent 72490b9 commit 2791ab2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ fun isBlockListed(candidate: ModuleComponentIdentifier): Boolean {
"com.applovin:applovin-sdk",
"com.ironsource.sdk:mediationsdk",
"com.google.guava",
"com.github.bumptech.glide"
"com.github.bumptech.glide",
// TODO(thatfiredev): remove functions once https://github.com/firebase/firebase-android-sdk/issues/6522 is fixed
"com.google.firebase:firebase-functions"
).any { keyword ->
keyword in candidate.toString().lowercase()
}
Expand Down
4 changes: 3 additions & 1 deletion functions/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,7 @@ dependencies {

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

0 comments on commit 2791ab2

Please sign in to comment.