Error:Could not find com.android.tools.build:gradle:3.0.1.(亲测可用)

原始配置:

Error:Could not find com.android.tools.build:gradle:3.0.1.(亲测可用)_第1张图片

Error:Could not find com.android.tools.build:gradle:3.0.1.(亲测可用)_第2张图片

报错:

Error:Could not find com.android.tools.build:gradle:3.0.1.

Error:Could not find com.android.tools.build:gradle:3.0.1.(亲测可用)_第3张图片


解决:

下载gradle: http://services.gradle.org/distributions/       找到你需要的版本。

 
  
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip

 
  
buildscript {
    repositories {
        jcenter()
        maven{
            url'https://maven.google.com'
        }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.0.1'
      
    }
}

然后:

Error:Could not find com.android.tools.build:gradle:3.0.1.(亲测可用)_第4张图片

或者sync project。

就可以了,希望能帮到你。

你可能感兴趣的:(AndroidStudio)