Failed to Import New Gradle Project: Failed to Find Build Tools Revision *.0.0

Failed to import new Gradle project: failed to find Build Tools revision *.0.0

After spending a few hours: I restarted the Android SDK Manager and at this time I noticed that I got Android SDK Platform-tools (upgrade) and Android SDK Build-tools (new).

After installing those, I was finally able to fully compile my project.

Note: The latest ADT (Version 22) should be installed.

Failed to find Build Tools revision 31.0.0

Problem fixed.

Previously the class path in my project level gradle was 4.2.2, it was not showing any warning though.

classpath "com.android.tools.build:gradle:4.2.2"

I had to replace it with

classpath 'com.android.tools.build:gradle:7.0.0'

And the project compiled successfully.

@SweetD3v's answer was helpful.

Gradle sync failed: failed to find Build Tools revision 21.1.2

Just open SDK Manager and install Build-tools 21.1.2. below is what you need to install:
Sample Image

Failed to find Build Tools revision 23.0.1

I faced the same problem and I solved it doing the following:

Go to /home/[USER]/Android/Sdk/tools
and execute:

$android list sdk -a

Which will show a list like:

  1. Android SDK Tools, revision 24.0.2
  2. Android SDK Platform-tools, revision 23.0.2
  3. Android SDK Platform-tools, revision 23.0.1

... and many more

Then, execute the command (attention! at your computer the third option may be different):

$android update sdk -a -u -t 3

It will install the 23.0.1 SDK Platform-tools components.

Try to build your project again.

Error:Failed to find Build Tools revision 22.0.1

You can try to open SDK Manager and install the SDK build-tool version 22.0.1

Sample Image

Failed to find Build Tools Revision 23.0.3

Edit the build.gradle app file and change the buildToolsVersion to the version you have



Related Topics



Leave a reply



Submit