Reputation: 6140
What causes following problem? Is my Android SDK Version not supported?
Starting JS server...
Building and installing the app on the device (cd android && gradlew.bat installDebug)...
FAILURE: Build failed with an exception.
* What went wrong:
A problem occurred configuring project ':app'.
> failed to find Build Tools revision 23.0.1
Upvotes: 91
Views: 45565
Reputation: 1
I found out that it also happens if you uninstalled some packages from your react-native project and there is still packages in your build gradle dependencies in the bottom of page like:
{
project(':react-native-sound-player')
}
Make sure to remove the associated code in the MainApplication.java file after removing the project(':react-native-sound-player')
Upvotes: 0
Reputation: 163
If you have Build Tools version 24.0.1, then update your build.gradle
to match buildToolsVersion "24.0.0"
My Android/Sdk/build-tools/24.0.1/source.properties
had Pkg.Revision
set to 24.0.0
.
Upvotes: 1
Reputation: 11
Find the version number in the /Users/username/Library/Android/sdk/build-tools
directory, and then modify the version number of the buildToolsVersion
corresponding to the Gradle configuration
Upvotes: 1
Reputation: 6238
It means that the Android Build Tools installed on your system is something else than in your app's configuration file (your configuration file is pointing to 23.0.1) but you probably have 23, 24 or 25.0.* on your system.
The solution to fixing this problem:
build.gradle
file located under anroid/app
in your project folderbuildToolsVersion
"23.0.1", and replace it with the latest version you have on your system. You can find it here: C:\Program Files (x86)\Android\android-sdk\build-tools
OR you could try to install in your system the version that you have in the build.gradle
file (with SDK manager).
Upvotes: 3
Reputation: 101
I had to change my Android project's build.gradle
to:
compileSdkVersion 23
buildToolsVersion "23.0.3"
defaultConfig {
applicationId "com.demoproject"
minSdkVersion 16
targetSdkVersion 23
versionCode 1
versionName "1.0"
ndk {
abiFilters "armeabi-v7a", "x86"
}
Upvotes: 3
Reputation: 92210
From Android SDK manager v25 you have to install the correct build tools directly from Android Studio because the android
command does not work anymore:
Upvotes: 1
Reputation: 36
I had this problem trying to build at the command line following react native's documentation. I resolved this problem by opening the project in android studio. The mismatched dependencies will appear in the build failure snackbar at the bottom of the App. For each failure, click on the link to resolve the issue.
Upvotes: 0
Reputation: 4683
I also had problem with newer version of SDK Build tools (same as Mark) but I managed to resolve it with modification of android/app/build.gradle
and setting proper version, e.g.
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
...
UPDATE: As Mark suggested, it is wise only update minor (or patch) version in this way. Another reason why not to update this version is when you have plenty of 3rd party libs with native part - you might end up updating all of them. So you must weight possible benefits of newer version vs a bit more work.
Upvotes: 29
Reputation: 1557
Probably you need to update your Build Tools.
I faced the problem when I tried to update from the graphic interface, it didn't show the exact minor version, so I couldn't update to it.
It was solved by looking at the available versions from the terminal with:
android list sdk -a
[...]
Packages available for installation or update: 156
1- Android SDK Tools, revision 24.4
2- Android SDK Platform-tools, revision 23.0.1
3- Android SDK Platform-tools, revision 23.1 rc1
4- Android SDK Build-tools, revision 23.0.1
[...]
And installing the right version with:
android update sdk -a -u -t 4
Upvotes: 135
Reputation: 41
Need modify 4 files
grep buildToolsVersion * -r | grep 23.0.1
Examples/Movies/android/app/build.gradle: buildToolsVersion "23.0.2"
Examples/UIExplorer/android/app/build.gradle: buildToolsVersion "23.0.2"
ReactAndroid/build.gradle: buildToolsVersion "23.0.2"
local-cli/generator-android/templates/src/app/build.gradle: buildToolsVersion "23.0.2"
Upvotes: 4
Reputation: 155065
Just a note - it's possible to get this error because the only version of the build tools you have installed is too new.
I got precisely the error that the OP got (complaining that react-native couldn't find Build Tools revision 23.0.1). When I checked my Android SDK Manager, I saw this:
I'd naively thought that installing the latest version of the Build-tools (23.0.2 at the time of writing) would work, but apparently not. Additionally installing 23.0.1 fixed the problem.
Upvotes: 73