Tag Archives: Could not find com.android.tools.build:gradle:3.0.1

[Solved] Could not find com.android.tools.build:gradle:3.0.1

 

in

buildscript {
    repositories {
        jcenter()
     }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.0.1'
        // NOTE: Do not place your application dependencies here; they belong
        // in the inpidual module build.gradle files
    }
}
Add to
buildscript {
    repositories {
        jcenter()
        maven {
            url 'https://maven.google.com'
        }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.0.1'
        // NOTE: Do not place your application dependencies here; they belong
        // in the inpidual module build.gradle files
    }
}