更新Android Studio后无法修复此错误

时间:2015-08-28 19:27:12

标签: android android-studio

我刚刚更新了Android Studio,由于这个错误,我无法加载我的所有项目:所有更新都已完成更新。

Error:failed to find Build Tools revision 23.0.0 rc3
<a href="install.build.tools">Install Build Tools 23.0.0 rc3 and sync project</a>

Loading SDK information...
Ignoring unknown package filter 'build-tools-23.0.0-preview'Warning: The package filter removed all packages. There is nothing to install.
         Please consider trying to update again without a package filter.

摇篮;

apply plugin: 'com.android.application'

android {
    compileSdkVersion 22
    buildToolsVersion "23.0.0 rc3"

    defaultConfig {
        applicationId "com.systematixnote.basicmathoperation"
        minSdkVersion 11
        targetSdkVersion 22
        versionCode 1
        versionName "1.0"
        multiDexEnabled true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:22.2.1'
}

3 个答案:

答案 0 :(得分:6)

这是最近构建的已知错误。报告此错误here

临时解决方案:buildToolsVersion "23.0.0 rc3"

中将buildToolsVersion "23.0.0"更改为build.gradle

注意:希望在下次更新时修复此错误。

答案 1 :(得分:2)

@Mohammad打败了我。 正如他所说的改变  buildToolsVersion&#34; 23.0.0 rc3&#34; 至  buildToolsVersion&#34; 23.0.0&#34;

答案 2 :(得分:0)

我从github下载的项目出现了同样的错误。我必须将我的设置为buildToolsVersion "23.0.2"才能使其正常工作。