Error:(26, 13) Failed to resolve: com.android.support:appcompat-v7:25.0.1
You have to use maven repository too in your project gradle file -
allprojects {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
}
}
And sync your project, it will work :-)