Bundle Identifier differs from prior bundle

Hey everyone!

I just had my first app published tonight but when a friend sent me a screenshot of the installed app my heart sank.

the application name is Kiddie Christmas Tree
the bundle identifier is com.thinkupllc.kiddiechristmastree

If I build in Corona with the app name Kiddie Christmas Tree I get a bundle identifier error from application loader.

If I go into the info.plist file after the build and manually edit the bundle identifier and upload it in application loader I get an Application signature error. I assume this is because I mucked with the .app after it was signed.

How do I fix this?
HELP!

here is link to the app in the store

http://itunes.apple.com/us/app/kiddie-christmas-tree/id410605859?mt=8

I could not have gotten this far without the support from everyone in this forum and of course, the Corona SDK. Thanks everyone!
[import]uid: 10763 topic_id: 4579 reply_id: 304579[/import]

I fixed this by adding a build.settings file with the following

[code]
settings =
{

iphone =
{
plist =
{
CFBundleIdentifier = “com.thinkupllc.KiddieChristmasTree”
},
}
}
[/code] [import]uid: 10763 topic_id: 4579 reply_id: 14435[/import]