Renaming a React Native project?

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

    1. For IOS app, change in xcodeproj settings is also available.

    Open Info.plist file from your project directory/ios/{appname} directory and change Bundle display name.

    CFBundleDisplayName
    NEW APP NAME
    
    1. For android app, you can change in android folder of your project directory.

      cd android/app/src/main/res/values/

    open strings.xml file and change you app name in

     NEW APP NAME
    

提交回复
热议问题