From 7801afdf5f1dfd675d7d3a995e567b38de1e3bf2 Mon Sep 17 00:00:00 2001 From: Rosario Fernandes Date: Wed, 29 Jul 2026 17:58:42 +0100 Subject: [PATCH] chore: allow firebase-functions updates again --- build.gradle.kts | 4 +--- functions/app/build.gradle.kts | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index af71b239..a4cbc6de 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -33,9 +33,7 @@ fun isBlockListed(candidate: ModuleComponentIdentifier): Boolean { "com.applovin:applovin-sdk", "com.ironsource.sdk:mediationsdk", "com.google.guava", - "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" + "com.github.bumptech.glide" ).any { keyword -> keyword in candidate.toString().lowercase() } diff --git a/functions/app/build.gradle.kts b/functions/app/build.gradle.kts index 3980108f..b2fceb54 100644 --- a/functions/app/build.gradle.kts +++ b/functions/app/build.gradle.kts @@ -43,9 +43,7 @@ dependencies { // Add the dependency for the Cloud Functions library // When using the BoM, you don't specify versions in Firebase library dependencies - // 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") + implementation("com.google.firebase:firebase-functions") // For streaming callable Cloud Functions implementation("org.jetbrains.kotlinx:kotlinx-coroutines-reactive:1.11.0")