Failed to resolve com.google.android.gms play-services-auth:11.4.0

后端 未结 13 1682
误落风尘
误落风尘 2020-11-22 14:08

I am trying to write code for Android FirebaseUI — Auth in my android project but from last two days, I am getting errors in my current code and don\'t know how to fix it. t

13条回答
  •  無奈伤痛
    2020-11-22 14:59

    Add google() repository to your "build.gradle" file. This gradle method is equivalent to maven { url "https://maven.google.com" }.

    repositories {
        jcenter()
        google()
    }
    

提交回复
热议问题