1

I am a beginner with react-native, and I keep getting errors like

The SDK Build Tools revision (23.0.1) is too low for project ':react-native-camera'. Minimum required is 25.0.0

which is discussed in other questions, and the answer is to edit build.gradle for the dependency (in this example react-native-camera) to set

 buildToolsVersion "25.0.0"

This works, but it requires a lot of manual intervention as the number of dependencies grows. Is there a way to automatically get these changes handled by npm when it updates the packages?

Laurent S
  • 4,106
  • 3
  • 26
  • 50
  • I get the same error message everytime I run `npm install` on our React Native project. –  May 18 '17 at 01:02

1 Answers1

0

Install the SDK Build Tools 25 ?

Steven Klinger
  • 284
  • 8
  • 21
  • if my understanding of https://stackoverflow.com/questions/24447687/check-android-developer-tools-version-command-line is correct, then I already have it installed. – Laurent S Apr 28 '17 at 10:06