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

Downgrade play-services-auth #1655

Merged
merged 2 commits into from
Aug 28, 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
3 changes: 2 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ fun isBlockListed(candidate: ModuleComponentIdentifier): Boolean {
"androidx.browser:browser",
"com.facebook.android",
"com.google.guava",
"com.github.bumptech.glide"
"com.github.bumptech.glide",
"com.google.android.gms"
).any { keyword ->
keyword in candidate.toString().lowercase()
}
Expand Down
3 changes: 2 additions & 1 deletion firestore/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ dependencies {
implementation("com.google.firebase:firebase-auth")

// Google Play services
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")
lehcar09 marked this conversation as resolved.
Show resolved Hide resolved

// FirebaseUI (for authentication)
implementation("com.firebaseui:firebase-ui-auth:8.0.2")
Expand Down
Loading