From 87600e8b4d43e1b8263e6bbcea6ee068359cdfb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ros=C3=A1rio=20P=2E=20Fernandes?= Date: Thu, 30 Jan 2025 13:56:29 +0000 Subject: [PATCH] pin the functions SDK version --- build.gradle.kts | 4 +++- functions/app/build.gradle.kts | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 12fcb5ae..4afa0145 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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() } diff --git a/functions/app/build.gradle.kts b/functions/app/build.gradle.kts index 4433e621..53f306d1 100644 --- a/functions/app/build.gradle.kts +++ b/functions/app/build.gradle.kts @@ -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") }