App Name Question

I’m almost ready to submit an update to my app to the AppStore but I have one question:

To get OF and GC working I used the following for my Application Name when building the game:

info.amiri.myappname

This got everything working nice and GC recognized my app, my question is:

My app name under the icon is now info.amiri.myappname rather than the original name (Strings Lab) I used for my app when I first published the game, would this be a problem?

[import]uid: 6942 topic_id: 10639 reply_id: 310639[/import]

I suspect it will be.

I used my game’s name OmniBlaster in OF. I don’t remember having to provide a separate name in iTunesConnect. I just clicked enable and setup my leaderboard and achievements.

Now I setup my stuff after my game was already approved for the store and I’m adding OF/GC in version 1.1 I’m preparing for release.

[import]uid: 19626 topic_id: 10639 reply_id: 38649[/import]

Check out these build settings, this is where you can specify your display name that will be under the icon.

[code]
settings =
{
orientation =
{
default =“landscapeLeft”,
content = “lanscapeLeft”,
supported =
{
“landscapeLeft”, “landscapeRight”, “portrait”, “portraitUpsideDown”, “faceUp”, “faceDown”,
},
},

iphone =
{
plist =
{
CFBundleIconFile = “Icon.png”,
CFBundleIconFiles = {
“Icon.png” ,
“Icon@2x.png” ,
“Icon-72.png” ,
“Icon-Small-50.png” ,
“Icon-Small.png” ,
“Icon-Small@2x.png”
},
CFBundleDisplayName = “YourAppName”,
CFBundleName = “YourAppName”,
CFBundleIdentifier = “com.yourCompany.yourAppName”,
CFBundleVersion = “1.0”,
UIPrerenderedIcon = true,
UIStatusBarHidden = true,
UIApplicationExitsOnSuspend = true,
UIAppFonts = {“Custom font”, “Another Custom font” }
},
},

}
[/code] [import]uid: 13560 topic_id: 10639 reply_id: 38651[/import]

thank lano78 that worked. [import]uid: 6942 topic_id: 10639 reply_id: 38684[/import]