Android Studio 2.3未能找到构建工具

Android Studio 2.3未能找到构建工具,android,android-studio,gradle,Android,Android Studio,Gradle,我很生气,在将android studio 2.2升级到2.3之后,我无法创建和编辑任何项目,因为gradle得到错误: Failed to find build tools revision 26.0.0 or any versions 我也从android studio下载了Gradle和构建工具,但没有成功 我的格拉德尔: apply plugin: 'com.android.application' android { compileSdkVersion 26 b

我很生气,在将android studio 2.2升级到2.3之后,我无法创建和编辑任何项目,因为gradle得到错误:

Failed to find build tools revision 26.0.0 or any versions
我也从android studio下载了Gradle和构建工具,但没有成功

我的格拉德尔:

apply plugin: 'com.android.application'

android {

    compileSdkVersion 26

    buildToolsVersion "26.0.0"
    defaultConfig {
        applicationId "atys.myapplication"
        minSdkVersion 16
        targetSdkVersion 26
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
以及:


您应该首先使用SDK管理器更新工具。 看看这个链接,它很有用。

如果你的问题没有解决。卸载android studio并删除Sdk文件夹,然后从此链接重新安装android studio新版本:

buildscript {
    repositories {
        jcenter()
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:2.3.0'

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

allprojects {
    repositories {
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

dependencies {
}