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.
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.
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 .
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 .
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.
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"
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...
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"
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With