错误:无法解决:com.google.android.gms:play-services-auth-api-phone:10.2.5

时间:2017-06-20 08:38:17

标签: android android-gradle google-play-services twilio twilio-api

我正在使用Twilio对我的Android应用进行短信验证,但是当我添加Twilio验证依赖的存储库时(编译' com.twilio:验证:+' )无法构建Gradle并显示以下错误: 错误:无法解决:com.google.android.gms:play-services-auth-api-phone:10.2.5 任何人都可以帮助我!

enter image description here

我安装并更新了存储库。enter image description here

注意:第一次让我更新存储库,但现在它不允许我更新存储库。

2 个答案:

答案 0 :(得分:0)

确保在存储库列表中添加该存储库。在你的应用程序的 build.gradle

allprojects {
    repositories {
        jcenter()  // This is missing 

    }
}

答案 1 :(得分:0)

与我有相同的问题,但我通过添加以下内容解决了此问题:

implementation 'com.google.android.gms:play-services-auth:15.0.1'

希望有帮助:)