Error:failed to find Build Tools revision 23.0.0 rc3

Error:failed to find Build Tools revision 23.0.0 rc3

Install Build Tools 23.0.0 rc3 and sync project.
Warning: The package filter removed all packages. There is nothing to install. Please consider trying to update again without a package filter.

enter image description here

Upvotes: 20

Views: 93552

Answers (5)

omotto
omotto

Reputation: 1879

As Devendra Vaja said but at least, in my Android Studio version 3.0.1, I could access to this option on the following way:

enter image description here

enter image description here

I hope it helps.

Upvotes: 0

softarn
softarn

Reputation: 5497

Install the Build Tools in the SDK Manager

Upvotes: 4

Jorge Casariego
Jorge Casariego

Reputation: 22212

Try deleting rc3 from your buildToolsVersion

So you'll have this

android {
    compileSdkVersion 22
    buildToolsVersion "23.0.0"
}

and not this

android {
    compileSdkVersion 22
    buildToolsVersion "23.0.0 rc3"
}

Upvotes: 8

Devendra Vaja
Devendra Vaja

Reputation: 3964

Solution:
A) Module Settings GUI

1) Go to Module Settings -> Press F4
2) Select "app" under Modules
3) Select the "Properties" tab
4) Check the Build Tools Version values.
5) See if you find the value "23.0.0rc3"
6) If not go to select the maximum possible value such as "23.0.0"

Project Settings

B) "gradle.build" update

In this change the buildToolsVersion value in the build.gradle file of app module from buildToolsVersion '23.0.0rc3' to buildToolsVersion '23.0.0'

I hope that helps.
Happy Coding...

Upvotes: 38

Subhash Khimani
Subhash Khimani

Reputation: 437

Update your sdk with latest version of android API level 23 and update following line like....

buildToolsVersion "23.0.0"

Upvotes: 3

Related Questions