Android Studio 2.3找不到构建工具

时间:2017-06-27 07:42:34

标签: android android-studio gradle

我生气了,在将android studio 2.2更新为2.3后,我无法创建和编辑任何项目,因为gradle get error:

Failed to find build tools revision 26.0.0 or any versions

我从Android工作室下载了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'
        }
    }

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 {
}

1 个答案:

答案 0 :(得分:1)

您应首先使用SDK Manager更新您的工具。 看这个链接有帮助。 https://developer.android.com/studio/intro/update.html

如果您的问题无法解决。卸载你的android工作室并删除你的Sdk文件夹,并从这个链接重新安装android studio新版本: https://developer.android.com/studio/index.html