Recently I updated my android SDK tools and I started getting this error
Failed to resolve: com.android.support:cardview-v7:26.0.0 androidSolution to this or any other similar error is to add maven end point in your build.gradle file
allprojects {
repositories {
jcenter()
maven {
url 'https://maven.google.com'
}
}
}
Comments
Post a Comment
Share your wisdom