SDK Location Not Found Error in React Native

Tiempo de lectura: < 1 minuto

If we encounter this error while trying to generate an apk of a React Native application SDK location not found Define a valid SDK location with an ANDROID_HOME environment variable or by setting the sdk.dir path in your project’s local properties file, we need to do the following to fix it.

Now we will create a file called local.properties inside the Android folder of our project.

We must navigate to local.properties and add the corresponding path to the Android SDK as follows

#sdk.dir=C\:\\Users\\Android\\Sdk

This way, when trying to generate the apk of a React Native application again, the error will no longer appear.

Hope this helps. Have a great day!

Leave a Comment