0

Above 11 versions work such for authentication, database, etc. But when we are going to compile 11.2.0 version, I can see this error:

(30, 13) Failed to resolve : com.google.firebase.firebase-auth:11.2.0

ישו אוהב אותך
  • 28,609
  • 11
  • 78
  • 96

1 Answers1

4

You need to add google maven repository to your project build.gradle (not app module). Currently, there is no information for this in Firebase Android Setup:

allprojects {
    repositories {
        jcenter()
        maven {
            url "https://maven.google.com"
        }
    }
}
ישו אוהב אותך
  • 28,609
  • 11
  • 78
  • 96