Reputation: 221
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.
Upvotes: 20
Views: 93552
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:
I hope it helps.
Upvotes: 0
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
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"
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
Reputation: 437
Update your sdk with latest version of android API level 23 and update following line like....
buildToolsVersion "23.0.0"
Upvotes: 3