I recently changed the name of an iOS app of mine, or more exactly the name of an Xcode project. I am using Xcode 8.2.1.
The old name was OldAppName and the new one is MyApp.
I followed this video: https://www.youtube.com/watch?v=jRnVjtNLLLk as a basic guidance. The result is not bad, because I successfully changed the name of the project. And the app is building and running with a new name.
But I get some annoying warning like the following:
file:...MyApp/OldAppName/AppDelegate.swift: warning: Missing file:
../MyApp/OldAppName/AppDelegate.swift is missing from working copy
If I search for OldAppName under Xcode I don't find anything.
But if I run the following command in the terminal (in my project folder):
find . -type f -exec grep -l OldAppName \{\} \;
I can see that OldAppName is still present in some files.
Is there something I can do to fix this issue?