hey i was wondering if you would know why my game does this… when i press “build” on corona, next to where it says “application name” i put “Squashabug!” right? then when i go to Application Loader, i upload my binary but it shows an error and says i have to change the name to “com.vidalrodriguez.squashabug” cause thats my binary ID. so i do that but when people buy my app, it shows “com.vidalrodriguez.squashabug” under the app icon, how can i make it say Squashabug! instead of com.vidalrodriguez.squashabug? i hope you can help me with this. thanks [import]uid: 10827 topic_id: 5353 reply_id: 305353[/import]
Put this in the iphone->plist section of your build.settings file:
[lua]CFBundleIdentifier = “ccom.vidalrodriguez.squashabug”[/lua]
Hope that helps, it fixed it for me! [import]uid: 8782 topic_id: 5353 reply_id: 18033[/import]
where should i put this exactly? my build settings is like this…
[code]
settings =
{
orientation =
{
default = “landscapeRight”,
content = “landscapeRight”,
supported =
{
“landscapeRight”
},
},
iphone =
{
plist =
{
UIPrerenderedIcon = true
},
}
}
[/code] [import]uid: 10827 topic_id: 5353 reply_id: 18458[/import]
settings ={...snip... iphone = { plist = { UIPrerenderedIcon = true, CFBundleIdentifier = "com.vidalrodriguez.squashabug" }, }}[/code] [import]uid: 8196 topic_id: 5353 reply_id: 18657[/import]