There is a bug in Firebase UI 9.0.0 that was corrected in a later commit. I am trying to include this later commit to my app project from Jitpack:
https://jitpack.io/#firebase/FirebaseUI-Android/version-9.1.0-dev-387e7c2e01-1
But when i try to sync Gradle, i get the error:
Failed to resolve: com.github.firebase:FirebaseUI-Android:version-9.1.0-dev-387e7c2e01-1
build.gradle (app)
implementation 'com.github.firebase:FirebaseUI-Android:version-9.1.0-dev-387e7c2e01-1'
settings.gradle (root)
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Why is this not working? Donny