Skip to content Skip to sidebar Skip to footer

Error:failed To Resolve: Com.google.android.gms:play-services-auth-api-phone:10.2.5

I am using Twilio for SMS verification for my Android app, but when I add the repository of Twilio verification dependency(compile 'com.twilio: verification:+') the Gradle can not

Solution 1:

Same Problem with me, but i solved this problem by adding:

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

Hope it helps:)

Solution 2:

Make sure you add that repository in your repository list. In your app’s build.gradle

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

    }
}

Post a Comment for "Error:failed To Resolve: Com.google.android.gms:play-services-auth-api-phone:10.2.5"