I have an Xcode project and needed to change the name of the product it builds. I went through the project files with a fine-toothed comb and thought I had made every change possible. The last step was to grep all files in the project folder for occurrences of the old name. It comes up clean.
But after a build grep finds a file which contains several occurrences of the old name. It is in a location like: MyProjectFolder/build/MyProject.build/MyProject.pbxindex/strings.pbxstrings/strings
I can't imagine where it is getting the old name from. Also, I have no idea what this file is used for. But I am concerned that apparently I haven't purged the old name everywhere.
Can anyone tell me what the ...pbxstrings/strings file is for and how it gets built? If I understand that I can probably track down the last remnants of the old name and purge them.