Android studio连接重置错误?

时间:2016-11-30 13:08:55

标签: android android-studio ide

我最近更新了android studio 2.2.2。现在,当我检查sdks并将依赖项添加到build.gradle时,我遇到了连接重置错误。我不知道这个。指导我删除此错误。

image1

1 个答案:

答案 0 :(得分:5)

尝试在buildscript.repositories附件中添加mavenCentral(),就像这样。将错误日志输出为弹出答案

buildscript {
    repositories {
        jcenter()
        mavenCentral()   // This repo should have the gradle plugin
    }
    dependencies {
         classpath 'com.android.tools.build:gradle:0.12.2'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
 }