From 28ecf5ed0ba76ec4a6fcf1a582a54040f4d99769 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ros=C3=A1rio=20P=2E=20Fernandes?= Date: Fri, 6 Mar 2026 23:42:28 +0000 Subject: [PATCH] chore: unpin play-services-auth --- app/build.gradle.kts | 1 - build.gradle.kts | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 39497f8..06753c2 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -48,7 +48,6 @@ dependencies { // Other Firebase/Play services deps implementation("com.google.firebase:firebase-auth") - // Pinned to 20.7.0 as a workaround for issue https://github.com/firebase/quickstart-android/issues/1647 implementation("com.google.android.gms:play-services-auth:20.7.0") // FirebaseUI (for authentication) diff --git a/build.gradle.kts b/build.gradle.kts index 7c9339f..8cdef9c 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -25,8 +25,7 @@ fun isNonStable(candidate: ModuleComponentIdentifier): Boolean { fun isBlockListed(candidate: ModuleComponentIdentifier): Boolean { return listOf( - "androidx.browser:browser", - "com.google.android.gms:play-services-auth" + "androidx.browser:browser" ).any { keyword -> keyword in candidate.toString().lowercase() }