When putting you app on itunes how can i make it so i have a full name on the store and abbreviated on the actual screen? [import]uid: 24708 topic_id: 27728 reply_id: 327728[/import]
In your build.settings file add;
[lua]CFBundleDisplayName = “App Name”[/lua]
That will be the name that shows on the device screen.
Peach
[import]uid: 52491 topic_id: 27728 reply_id: 112494[/import]
Would it be the same thing if i had it in config.lua???
[code]
application =
{
content =
{
width = 320,
height = 480,
scale = “Letterbox”,
imageSuffix =
{
["@2x"] = 2,
},
},
}
[/code] [import]uid: 24708 topic_id: 27728 reply_id: 112495[/import]
@Brian: No, it has to be placed in your build.settings file, under your iPhone plist section [import]uid: 84637 topic_id: 27728 reply_id: 112520[/import]