Changing name in Xcode creates error at compile

Monkey Targets Forums/iOS/Changing name in Xcode creates error at compile

chimaera(Posted 2013) [#1]
Hi,

I am messing around with several projects targeting iOS and to be able to have all projects on my phone I use Xcode to change the name of the projects.

But everytime I do this and then go back to Monkey to compile it states that it can't find "MonkeyGame.xcodeproj" anymore, since it changed name. This is of course correct, but how where do I tell the compiler to use a unique xcodeproj-name?

Hopefully my question makes sense.

Thanks!


FelipeA(Posted 2013) [#2]
You could change the name on "Bundle display name" and "Bundle name" to the name you want for your app on the info.plist file. Also changing the Bundle identifier could help. I do that so if I have to make any change on the code I don't have to change the name of the project or import the main.mm file to my old xcode project.


chimaera(Posted 2013) [#3]
ok! Thanks!