Could not find com.android.support:recyclerview-v7:25.3.0.
Gradle sync failed: Could not find com.android.support:recyclerview-v7:25.3.0.
Solution
Solution
open build.gradle file
add maven { url "https://maven.google.com" }
allprojects {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
}
}https://stackoverflow.com/a/45342389/1399891