Renaming a React Native project?

前端 未结 16 914
独厮守ぢ
独厮守ぢ 2020-11-28 02:45

Are there instructions for what needs to be changed in order to rename a React Native project? I have an app called something along the lines of MyAppIOS and I want to renam

16条回答
  •  忘掉有多难
    2020-11-28 03:17

    What simply works for me several times is instructed below;

    • First copy the directory which your to-be-name-changed application exists. And go to your newly cloned directory.
    • Change the name at index.ios/android.js file which is given as a parameter to AppRegistry.
    • Change the name and version accordingly on package.json
    • delete /ios and /android folders which are remaining from your older app as well as the app.json file if you have.
    • run $react-native upgrade to generate /ios and /android folders again.
    • run $react-native link for any external dependency.
    • finally run $react-native run-ios or anything you want.

提交回复
热议问题