Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Terminating since there is no system app?

Tags:

ios

xcode6

Has anyone been experiencing the error message "Terminating since there is no system app" lately in XCode?

I have a CoreAudio app (built with The Amazing Audio Engine framework) running on iOS 8.1 and XCode 6.1. Since XCode 6.1 (or/and iOS 8.1) my app randomly crashes (generally not long after starting to run) and my iPad displays a black screen with the white apple logo. Like the boot up screen but only for a few seconds. Then the ipad goes back to the locked screen.

The log windows says : "Terminating since there is no system app". No very helpful ;^(

Anyone is having the same issue? Thanks.

like image 803
André Avatar asked Nov 10 '14 15:11

André


3 Answers

That error message is just telling you that iOS stopped running. So obviously the app is no longer running and won't be able to again until the iPad finishes rebooting. As far as what causes the crash you need to do some more exploring. Definitely turn on exception breakpoints to see if you can catch the crash before the whole device crashes. Another thing to keep in mind is that the debugger, for whatever reason, will not work if you have distribution profiles installed. If you have an app with an included push profile, for example, it will always crash shortly after launch because the debugger takes it down with it.

like image 65
Dare Avatar answered Nov 15 '22 08:11

Dare


Try to change the entry view, and see if it works with other views. If yes, then check if you loaded big size images or other resources in the original entry view. Sometimes this can cause memory insufficient issue at apple devices.

like image 28
Michelle Gong Avatar answered Nov 15 '22 10:11

Michelle Gong


this also shows up when changing the iOS language setting.

like image 1
orion elenzil Avatar answered Nov 15 '22 08:11

orion elenzil