Renaming NativeScript iOS Application

柔情痞子 提交于 2019-12-25 05:07:21

问题


I need to rename my application and I'm not sure where to start. I tried manually changing the names of a few folders/files, but everything broke, I think because there were way more things using the original name than I had anticipated. I checked out the following post, but it is unfortunately for Android (I am building an iOS application). Renaming app name


回答1:


I went through the same thing recently. It was a frustrating process! I will try to remember everywhere I had to do it.

  • Change the app name in your iTunes Connect account: Youll need to submit a new build version. Create a new version, and change the Name in the App Information section.
  • You need to change it in App_Resources/iOS/Info.plist:

<key>CFBundleDisplayName</key>
<string>NEWAPPNAME</string>
// this changes the name under the icon

Once youve changed that, build your app and open platforms/ios/appname.xcworkspace and make sure the Display Name has changed.

I think those are all the places.



来源:https://stackoverflow.com/questions/43639209/renaming-nativescript-ios-application

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!