How to rebuild the entire Android folder?

后端 未结 8 2151
长发绾君心
长发绾君心 2021-01-31 17:44

I have messed the files up in the Android folder and would like to rebuild the Android project inside of the Android folder. How do I do this?

Is it safe to delete the

8条回答
  •  星月不相逢
    2021-01-31 18:11

    Running following commands should do the trick:

    sudo rm -rf android/ ios/ #Delete Android and ios folders first...
    react-native eject
    react-native upgrade //rebuilds android/ios folders
    react-native link
    react-native run-android
    react-native run-ios
    

提交回复
热议问题