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?