Build iOS project freezes the simulator

Hey, almost every time that I compile (Build) a iOS project the simulator freezes at a screen “Connecting with server…” and stay on it for ever.

Does anyone already got this problem?

Thanks [import]uid: 94630 topic_id: 21930 reply_id: 321930[/import]

launch corona terminal first - then try to connect. see what error you get from the corona terminal.

post screenshot.

c
[import]uid: 24 topic_id: 21930 reply_id: 87182[/import]

Here’s the prints:

Terminal:

Corona:

I don’t know why, but sometimes freezes this page and I have to close the program and restart for another build. [import]uid: 94630 topic_id: 21930 reply_id: 87275[/import]

Nothing???
Need further information?? [import]uid: 94630 topic_id: 21930 reply_id: 87507[/import]

Hi, I suspect this is related to a error in your build.settings file.

Can you post it up please? [import]uid: 84637 topic_id: 21930 reply_id: 87522[/import]

build.settings

settings = {  
  
 orientation = {  
 default = "portrait",  
 supported =  
 {  
 "portrait"  
 },  
 },  
  
 iphone = {  
 plist = {  
 UIPrerenderedIcon = true,  
 UIStatusBarHidden = false,  
 UIApplicationExitsOnSuspend = false,  
 CFBundleIconFile = "Icon.png",  
 CFBundleIconFiles = {  
 "Icon.png",  
 "Icon@2x.png",  
 "Icon-72.png",  
 },  
 components = {}  
 }  
 },  
}  

I don’t know if the built.settings is the problem, I realized that when i close some programs like twitter and others, the Build works normally, maybe a port conflict?? [import]uid: 94630 topic_id: 21930 reply_id: 87530[/import]

Try this :

[code]
settings = {

orientation = {
default = “portrait”,
supported =
{
“portrait”
},
},

iphone = {
plist = {
UIPrerenderedIcon = true,
UIStatusBarHidden = false,
UIApplicationExitsOnSuspend = false,
CFBundleIconFile = “Icon.png”,
CFBundleIconFiles = {
“Icon.png”,
“Icon@2x.png”,
“Icon-72.png”,
},
components = {},
},
},
}
[/code] [import]uid: 84637 topic_id: 21930 reply_id: 87532[/import]

Nice, I’m trying your build.settings and I’ve added CFBundleIdentifier.
Until now it’s going well, I get back later for confirmation.

Thanks everyone [import]uid: 94630 topic_id: 21930 reply_id: 87558[/import]