Renaming a React Native project?

前端 未结 16 844
独厮守ぢ
独厮守ぢ 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:15

    • First of all copy the address which your want to-be-name-changed application exists. And go to your newly cloned directory.

    • Replace the name at the index.ios/android.js file which is given as a parameter to AppRegistry.

    • update the name and version accordingly on package.json remove /ios and /android folders which are remaining from your older app and from the

    • run $react-native upgrade to generate /ios and /android folders again. and run $react-native link for any external dependency.

    • finally, run $react-native run-ios or else.

提交回复
热议问题