Failed to find Build Tools revision 23.0.1 Failed to find Build Tools revision 23.0.1 linux linux

Failed to find Build Tools revision 23.0.1


You should install Android SDK Build Tools 23.0.1 via Android SDK. Don't forget to check Show Packages Details.

Image


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

Go to /home/[USER]/Android/Sdk/toolsand 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.


Either install v23.0.1 of the build tools (the fifth row in your screenshot), or change your code to use the build tools version you already have installed (v23.0.3). This can be specified in your app's build.gradle file:

android {    compileSdkVersion 23    buildToolsVersion "23.0.3"    defaultConfig {        ...    }}

As per duncanc4's comment below,

The build.gradle file you want to edit is in the android/app folder within your project directory.