Can't seem to find the error in my build.settings

Hey Guys,
Corona isn’t letting me build because apparently there is an error in my build.settings

Can anyone help me find it?

[lua]
settings =
{

iphone = {
plist = {
UIApplicationExitsOnSuspend = false
UIStatusBarHidden = true
CFBundleURLTypes =
{
{
CFBundleURLSchemes =
{
“fbxxx”, (have my real Facebook ID in the actual code)
}
}
}
}
}
androidPermissions =
{
“android.permission.INTERNET”
},

orientation =
{
default = “portrait”,
content = “portrait”,
}
}[/lua]

Thanks [import]uid: 50842 topic_id: 24397 reply_id: 324397[/import]

I’m not the best at plists, but
try commas in

 UIApplicationExitsOnSuspend = false,  
 UIStatusBarHidden = true,  

for starters… [import]uid: 21331 topic_id: 24397 reply_id: 98646[/import]