I have these two errors:
Failed to resolve: com.android.support:custom tabs:[26.0.0,26.1.0]
Failed to resolve: com.android.support:support-v4:[26.0.0,26.1.0]
Now Android support package disturbs over network(starts from 25.4), so your project's build.gradle file should include that:
allprojects {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
}
}
UPDATE
Also you can add google()
instead of maven{url "..."}
:
allprojects {
repositories {
jcenter()
google()
}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With