Android – Could not resolve com.android.tools.build:gradle:3.0.1

android

Could not resolve all files for configuration ':classpath'.
Could not resolve com.android.tools.build:gradle:3.0.1.
Required by:
project :
Could not resolve com.android.tools.build:gradle:3.0.1.
Could not get resource 'https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.0.1/gradle-3.0.1.pom'.
Could not GET 'https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.0.1/gradle-3.0.1.pom'.
Connect to dl.google.com:443 [dl.google.com/216.58.221.110] failed: Connection timed out: connect

Best Answer

If you are using com.android.tools.build:gradle:3.0.1, then use only google() repository https://developer.android.com/studio/releases/gradle-plugin.html

buildscript {
    repositories {
        google()
        jcenter()
    }

It worked for me.