React Native: always gradlew clean before run react-native-run-android

Truong picture Truong · Mar 3, 2017 · Viewed 71k times · Source

If don't run cd android && ./gradlew clean before react-native run-android this fails with some error like:

Failed to create folder: ...

or

Failed to delete folder: ...

so I must run more times again to solve it.

Help me solve it without gradlew clean, please.

Thanks so much.

Answer

Vijay Vavdiya picture Vijay Vavdiya · Aug 30, 2019

For clean android project run following command

cd android &&./gradlew clean

to re-run

cd .. && react-native run-android