Error:failed to find Build Tools revision 23.0.0 rc3

风流意气都作罢 提交于 2020-01-29 00:56:16

问题


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.


回答1:


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




回答2:


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"
}



回答3:


Install the Build Tools in the SDK Manager




回答4:


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

buildToolsVersion "23.0.0"



回答5:


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.



来源:https://stackoverflow.com/questions/32111579/errorfailed-to-find-build-tools-revision-23-0-0-rc3

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!