Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to solve failed to find build tools revision 26.0.2?

I'm trying to Install Build Tools 26.0.2 and sync project

Failed to find build tools revision 26.0.2 

I clicked "Install Build Tools 26.0.2 and sync project" but still failed ... Downloaded it from the external link .. but I don't know where I put it. So, What should I do? and THANKS

image1 image2

like image 549
Mohamed Alaa Avatar asked Dec 08 '17 20:12

Mohamed Alaa


People also ask

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.

How do I find buildToolsVersion?

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 .


2 Answers

Android Studio is looking for build tools 26.0.2, but build tools 27.0.3 is already released for Android Oreo 8.1

I am not totally sure why, but Android Studio doesn't set the build tools in the gradle "app" file anymore. So here is how I fixed it. You get two options.

Method 1 - Install the missing build tools

1) Open the SDK manager by clicking on the icon in the top right of Android Studio. It looks like an android head in front of a download arrow. (Or go to File > Settings > Appearance & Behavior > System Settings > Android SDK)

2) Open SDK Tools tab

3) At the bottom-right, click "Show Package Details"

4) Find Android SDK Build-Tools and check the checkbox next to 26.0.2

5) Click apply in the bottom of the window

Method 2 - Use latest build tools

1) Follow instructions above

2) Uncheck all build tools besides 27.0.3 (the latest build tools at the time of writing)

Then you can define android build tools 27.0.3 in your gradle app file. To do this:

3) Make sure build tools 27.0.3 is installed by using the Android SDK manager (steps above).

4)Then find your build.gradle file. Use the navigation pane to the left of android studio. If it's closed click the icon that looks like the android studio icon to the far left of android studio (it should have text that is sideways, and normally says "1:project"). Then use the file tree to find the file [yourappname] > app > build.gradle

5) Open the file and it should have something along the lines of "apply plugin: 'com.android.application'" as the first line. Then add a new line under "compileSDKVersion" type in buildToolsVersion "27.0.3"

6) Then sync your project and you should be good to go!

like image 178
Anthony Alphabet Avatar answered Sep 22 '22 01:09

Anthony Alphabet


I have solved this problem by simply downloading the package with a standard browser Firefox, Chrome, etc.

  • Link https://dl.google.com/android/repository/build-tools_r27.0.3-windows.zip

The link itself is taken from the error logs of the Android Studio

Unzip it into the local folder

C:\Path\To\AppData\Local\Android\Sdk\build-tools 

And then rename the unzipped folder to 27.0.3

After that, just sync the build.gradle and voila! The problem is solved.

Also in the SDK Manager try to use on the SDK Update Sites Tab the following option:

  • Force https://... sources to be fetched using http://...
like image 36
Georgy Ivanov Avatar answered Sep 22 '22 01:09

Georgy Ivanov