Skip to content
Open
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
1 change: 0 additions & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
3 changes: 1 addition & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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()
}
Expand Down
Loading