Android Fix Failed to Find Build Tools Revision

Failed to Find Build Tools Revision 2X.X.X

Android Build tools get updated often and whenever an Android project you import that is using a different Build Tools Revision than the one you’re using, you’ll see this error in Android Studio.

To fix “Failed to Find Build Tools Revision” you have 2 options:

  1. Install the missing Build Tools revision
  2. Change the Build Tools version in your ../app/build.gradle

Install missing Android Build Tools revision

Install a missing Android Build Tools revision via Tools -> Android -> SDK Manager -> SDK Tools (tab) -> Check Show Package Details (bottom right check box) -> mark the checkbox ofย the requested Android Build Tools version

android-studio-failed-build-tools

 

Change the Android Build Tools Version in Build.Gradle

  1. Open app/build.gradle
  2. Find buildToolsVersion
  3. Change the version number to one you have installed (see above SDK Tools image on how to find which versions you have installed, which are marked as “Installed” or “Not Installed”)
  4. Sync Gradle.

 

 

build-gradle-build-tools-version


Posted

in

by

Tags: