Skip to content

Commit 0a8c6ff

Browse files
authored
chore: unpin functions version (#2659)
1 parent f733d09 commit 0a8c6ff

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

build.gradle.kts

+1-2
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,7 @@ fun isBlockListed(candidate: ModuleComponentIdentifier): Boolean {
7171
"com.facebook.android",
7272
"com.google.guava",
7373
"com.github.bumptech.glide",
74-
"com.google.android.gms",
75-
"com.google.firebase:firebase-functions" // TODO(thatfiredev): remove once https://github.com/firebase/firebase-android-sdk/issues/6522 is fixed
74+
"com.google.android.gms"
7675
).any { keyword ->
7776
keyword in candidate.toString().lowercase()
7877
}

functions/app/build.gradle.kts

+1-3
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,7 @@ dependencies {
5454
implementation(platform("com.google.firebase:firebase-bom:33.10.0"))
5555

5656
// Cloud Functions for Firebase
57-
// TODO(thatfiredev): remove the pinned dependency version when
58-
// https://github.com/firebase/firebase-android-sdk/issues/6522 is fixed
59-
implementation("com.google.firebase:firebase-functions:21.0.0")
57+
implementation("com.google.firebase:firebase-functions")
6058

6159
// Firebase Authentication
6260
implementation("com.google.firebase:firebase-auth")

0 commit comments

Comments
 (0)