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

后端 未结 13 1510
误落风尘
误落风尘 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 15:02

    You can go to the maven to check the latest version

    https://mvnrepository.com/artifact/com.google.android.gms/play-services

    and then add maven { URL "https://maven.google.com" } to your root level build.gradle file

    allprojects {
        repositories {
            jcenter()
            maven {
                url "https://maven.google.com"
            }
        }
    }
    

提交回复
热议问题