Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pin play-services-auth version temporarily #235

Merged
merged 1 commit into from
Aug 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ dependencies {

// Other Firebase/Play services deps
implementation("com.google.firebase:firebase-auth-ktx")
implementation("com.google.android.gms:play-services-auth:21.2.0")

// 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)
implementation("com.firebaseui:firebase-ui-auth:8.0.2")
Expand Down
5 changes: 4 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@ fun isNonStable(candidate: ModuleComponentIdentifier): Boolean {
}

fun isBlockListed(candidate: ModuleComponentIdentifier): Boolean {
return listOf("androidx.browser:browser").any { keyword ->
return listOf(
"androidx.browser:browser",
"com.google.android.gms:play-services-auth"
).any { keyword ->
keyword in candidate.toString().lowercase()
}
}
Expand Down
Loading