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

后端 未结 13 1477
误落风尘
误落风尘 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:58

    > maven {
                url "https://maven.google.com"
            }
     repositories {
        jcenter()
        google()
    }
    
    
     use this
    
    `implementation 'com.google.android.gms:play-services-ads:19.3.0'` 
    
    instead of
    
    `compile 'com.google.android.gms:play-services-auth:11.4.0'`
    
        
    

提交回复
热议问题