Error:failed To Find Build Tools Revision 23.0.0 Rc2 - Android Studio
Solution 1:
You can use
compileSdkVersion 23
buildToolsVersion "23.0.0"
Then
Clicking the button Sync Project With Gradle Files should do the trick:
Tools -> Android -> Sync Project with Gradle Files
If that fails, try running Rebuild project:
Build -> Rebuild Project
For more details ,you can visit
Solution 2:
AS far as your this error line concern
Error:failed to find Build Tools revision 23.0.0 rc2 Install Build Tools 23.0.0 rc2 and sync project
It clearly says that you need to install the above mention package to build the project I mean to see the project according to new build version and techniques. So you need to update your sdk .
now come to the second error , There are couple of posibilites which I can think of 1. Make sure you are not behind any type of proxy, if so then set that proxy in your AS too.
- if you have not any real issue in your network such as As I described above, then You are better to delete the folder of 23.0.0 rc2 and respective folder I mean 23XX folders. and then try launching the sdk manager again
I hope this would solve your problem , mean while if you want to see your project on different build version , please see the image below and try this
I hope this would solve your problem.
Edit 2: As I read your comment after posting this answer
You should change the build tool version in your build.gradle file in the Android studio. I think that this would work
Solution 3:
I have changed compileSdkVersion and buildToolsVersion in gradle settings like below.It works.
compileSdkVersion 23 buildToolsVersion "23.0.0"
By Kalaimani.R
Post a Comment for "Error:failed To Find Build Tools Revision 23.0.0 Rc2 - Android Studio"