Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error:failed to find Build Tools revision 23.0.0 rc3

Tags:

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

like image 695
Pattrawut Chumsai Na Ayudtaya Avatar asked Aug 20 '15 07:08

Pattrawut Chumsai Na Ayudtaya


People also ask

Where to find Android Build tools?

Android SDK Build-Tools is a component of the Android SDK required for building Android apps. It's installed in the <sdk>/build-tools/ directory.

How do I find the build tool version?

For the compileSdkVersion you can goto Tools > Android > SDK Manager . This will pull up a window that will allow you to manage your compileSdkVersion and your buildToolsVersion .

What is buildToolsVersion in Android?

buildToolsVersion is the version of the compilers (aapt, dx, renderscript compiler, etc...) that you want to use. For each API level (starting with 18), there is a matching .

How do you update buildToolsVersion?

If you want to change the Build Tools version in your project, that is specified in project's build. gradle file (in the 'app' module). Open the file and either add or update the Build Tools version you want to use by adding/updating the following property in the 'android' section: android { buildToolsVersion "27.0.


2 Answers

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...

like image 197
Devendra Vaja Avatar answered Sep 19 '22 15:09

Devendra Vaja


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"
}
like image 30
Jorge Casariego Avatar answered Sep 21 '22 15:09

Jorge Casariego