Changed project name in Xcode causing naming error

限于喜欢 提交于 2019-11-27 06:58:34

Check the product name in build settings and make sure everywhere it is Myapp. If that is done,

  • Close your project -> go to finder.
  • Right click on your .xcodeproject file and click on show package contents.
  • Then right click on your project.pbxproj and open it in some text editor.
  • Then search for Myapp-temp-caseinsensitive-rename and manually rename it.
  • Save it after changing and then reopen the project.

Make sure you have taken a back up of your project before doing this.

I had a similar issue, but it only affected a Target that got affixed with "case-insensitive-rename". If you have a similar situation, just do the following (using XCode 5):

1) click on your project in the left. 2) expand to see all your targets by clicking the tiny button

3) rename affected Target(s).

4) Save project. Then for OCD brownie points, open your project in a text editor and do a ctrl-f for any "insensitive" or similar to ensure everything's resolved.

Mehdi Abderezai

None of these worked for me, I found this post and it worked, and it was the simplest. So I guess the solution depends on how you got yourself in the mess in the first place :)

-temp-caseinsensitive-rename in Bundle Identifier

Ryan

Go to project -> Build Settings -> Search "Packaging" and change the product name key.

If that does not work, repeat but within your target, so Targets -> YourApp -> Build Settings -> Search "Packaging"

Voila.

Try building a new scheme of your app by selecting on project name on top of xcode after play and stop button. Worked for me!

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