Renaming a React Native project?

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

    The following steps must be followed while renaming Project/app in react Native 1. create a new folder test

    1. Copy and paste all files from demo to test folder

    2. Change the name in package.json file

    3. Change the name in package-lock.json file

    4. Change the name in App.json file

    5. Delete /ios and /android folders

    6. Run react-native eject command to create /ios and /android folders again

    7. run react-native link for any external dependency.

    8. finally run your app by using react-native run-android command.

    Form more information visit https://youtu.be/_lgH9LXf818

提交回复
热议问题