Madona wambua
Madona wambua

Reputation: 1428

Can't seem to fix this Error after updating Android Studio

I just updated Android Studio and I can't load all of my project due to this erros: All the updates are already done updating.

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.

Gradle;

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

Upvotes: 3

Views: 5281

Answers (3)

Micro
Micro

Reputation: 10891

Same error with a project I downloaded from github. I had to set mine to buildToolsVersion "23.0.2" for it to work.

Upvotes: 0

Want2bExpert
Want2bExpert

Reputation: 527

@Mohammad beat me to it. As he said change buildToolsVersion "23.0.0 rc3" To buildToolsVersion "23.0.0"

Upvotes: 2

Mohammad Arman
Mohammad Arman

Reputation: 7065

This is known bug of the recent build. This bug is reported here.

Temporary solution: Change buildToolsVersion "23.0.0 rc3" to buildToolsVersion "23.0.0" in your build.gradle

Note: Hopefully this bug will be fixed in the next update.

Upvotes: 6

Related Questions