Renaming a React Native project?

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

    You can change the name attribute in package.json, run react-native upgrade, and just let react overwrite the android/ios files. Don't overwrite your index files if there is unsaved code, however.

    Then change your Appregistry line from

    AppRegistry.registerComponent('MyAppIOS', () => MyAppIOS);
    

    To:

    AppRegistry.registerComponent('MyApp', () => MyApp);
    

提交回复
热议问题