Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Application crash on start up

My application was working perfectly good and suddenly i'm getting crash on start up with iOS 8 and previous OS also now.

The crash log looks like:

iPhone kernel[0] <Notice>: xpcproxy[566] Container: /private/var/mobile/Containers/Data/Application/xxxxxx-xxxx-xxxxx-xxxxxxxx (sandbox)

iPhone ReportCrash[567] <Error>: task_set_exception_ports(B07, 400, D03, 0, 0) failed with error (4: (os/kern) invalid argument)

iPhone ReportCrash[567] <Notice>: ReportCrash acting against PID 566

iPhone ReportCrash[567] <Notice>: Formulating crash report for process app_name[566]

iPhone locationd[63] <Notice>: Gesture EnabledForTopCLient: 0, EnabledInDaemonSettings: 0

iPhone com.apple.xpc.launchd[1] (UIKitApplication:com.xxxxx[0xc36c][566]) <Notice>: Service exited due to signal: Trace/BPT trap: 5

iPhone SpringBoard[43] <Warning>: Application 'UIKitApplication:com.xxxxx[0xc36c]' crashed.

iPhone assertiond[57] <Warning>: Could not set priority of <BKNewProcess: 0x16624ab0; com.xxxxx; pid: 566> to 2, priority: No such process

iPhone assertiond[57] <Warning>: Could not set priority of <BKNewProcess: 0x16624ab0; com.xxxxx; pid: 566> to 4096, priority: No such process

I already wondered for this issue but didn't get any exact solution. Please help for me as i need to solve this issue as soon as possible. Any help will be surely appreciate.

Thanks in advance.!!..

like image 331
Mehul Solanki Avatar asked Nov 10 '22 23:11

Mehul Solanki


1 Answers

I had a similar problem.

iPhone ReportCrash[567] : task_set_exception_ports(B07, 400, D03, 0, 0) failed with error (4: (os/kern) invalid argument)

I tried this to solve my problem and it worked fine.

Go to your Project > Build Settings > Search per Swift Compiler > in Optimization Level > set Debug and Release to None[-Onone]

Good luck.

like image 144
ViTUu Avatar answered Nov 14 '22 23:11

ViTUu