Simulator Crash During App Building

Hi, I’ve been experiencing a very frustrating application crash when I try to build my iPhone/iPad/Android app. The Corona Simulator crashes right after the build queue countdown reaches zero. I’m using the newest trial version. If I build one of the sample apps it works fine. I get the same behavior on both Windows 7 and Mac OS X. From what I understand, the problem could be in the build.settings file, so I’m posting it here to see if anyone could help me out:

settings =   
{  
 orientation =  
 {  
 default = "portrait",  
  
 supported =  
 {  
 "portrait", portraitUpsideDown"  
 },  
 },  
  
 iphone =  
 {  
 plist =  
 {  
 UIApplicationExitsOnSuspend = false,  
 UIStatusBarHidden = true,  
 UIPrerenderedIcon = true,  
 CFBundleIconFile = "Icon.png",  
  
 CFBundleIconFiles =   
 {  
 "Icon.png",   
 "Icon@2x.png",   
 "Icon-72.png",  
 "Icon-Small-50.png",  
 "Icon-Small.png",  
 "Icon-Small@2x.png"  
 },  
 },  
 },  
  
 android =   
 {  
 versionCode = "10",  
 versionName = "1.0"  
 },  
  
 androidPermissions =   
 {  
 "android.permission.INTERNET",  
 "android.permission.VIBRATE"  
 },  
}  

Any help would be greatly appreciated.
If there’s nothing wrong with my build.settings file, what other problems could cause this behavior? [import]uid: 90817 topic_id: 22962 reply_id: 322962[/import]

Line 10 is missing a "
should be:

 "portrait", "portraitUpsideDown"  

Raúl Beltrán
MIU Games [import]uid: 44101 topic_id: 22962 reply_id: 91720[/import]