Changed project name in Xcode causing naming error

后端 未结 6 2160
遇见更好的自我
遇见更好的自我 2020-11-30 02:15

My old name consisted of a camel case type name similar to this

MyApp

I then changed it to

Myapp \'notice the A is

相关标签:
6条回答
  • 2020-11-30 02:19

    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.

    0 讨论(0)
  • 2020-11-30 02:21

    In my case hold down the option key on the keyboard and go to

    Project -> Clean Build Folder (option+shift+command+k)

    After that close and reopen Xcode.

    0 讨论(0)
  • 2020-11-30 02:37

    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

    0 讨论(0)
  • 2020-11-30 02:38

    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.

    0 讨论(0)
  • 2020-11-30 02:41

    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

    step 2 - tiny expand button

    3) rename affected Target(s).

    step 3 - rename

    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.

    0 讨论(0)
  • 2020-11-30 02:43

    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!

    0 讨论(0)
提交回复
热议问题