So, I am working on my first Cordoba application, and I probably have a typical noob question ...
I created my application using this command:
cordova create MyFirstApp com.[my_domain].myfirstapp MyFirstApp
I see that this creates a complex file structure under the MyFirstApp directory, an Xcode project called MyFirstApp.xcodeproj, and dozens of files starting with MyFirstApp (e.g. MyFirstApp-Info.plist, MyFirstApp-Prefix.pch, etc.).
All this is wonderful.
But, after development is complete, I understand that I would like the name of the application , as shown on the user's home screen , to be something else (for example, "Cool App!").
Is it possible to change only the "display name" without messing up the directory structure and the Xcode project?
It seems that the name node in config.xml does not do this - this value seems to control much more than just displaying the name. (For example, if I change it, cordova build iOS does not work, and Xcode starts complaining ...)
ios xcode cordova
mattstuehler
source share