Dyld`gdb_image_notifier exception when launching an application on a device

When I try to download an application to a device, sometimes I get the following exception

dyld`gdb_image_notifier: 0x2beca0cc: bx lr

but after stopping and starting again everything is working fine, can someone tell me why this is happening

+6
source share
5 answers

Basically, there is a breakpoint in the debugger. Thought it wasn’t a solution to run the application on the device, just click “Debug” and then “Continue” (or ^ ⌘Y). This should help pass a breakpoint and continue to run the application. "Debug" → "Deactivate breakpoints" may also help in some cases.

+5
source

Product -> Clean ... fixed it for me.

+2
source

I think the problem is in the GLKit Framework .

So, try this, add the GLKit Framework optionally to the path shown in the image below, and then recreate it.

The frame was pulled into the assembly under

Project->BuildPhases->LinkBinaryWithLibraries.

enter image description here

Hope this helps!

+1
source

I also started getting this breakpoint while working on iPhone4 v 7.1.2. I am not contacting GLKit.framework, so this suggestion did not help. I had some success cleaning the library and reinstalling it. After that, he seems choppy. Running outside the debugger works fine.

0
source

This is an old question, but I am facing the same problem and could not find an answer. After a few hours, I find this reason to be conflicting restrictions in the authorized history. And this exception no longer occurs after I have fixed all conflict restrictions

0
source

Source: https://habr.com/ru/post/983083/


All Articles