Apple reject app

Hello Everyone,

Apple rejects app due to this crash and attached couple of crash logs, from where it hard to find out what's the exact reason behind it, Can anyone help me out.

These crashes all look roughly the same. Consider this:

Exception Type:  EXC_BREAKPOINT (SIGTRAP)

This means that your process trapped, that is, it deliberately crashed itself. The most common cause of this is a Swift trap, for example, unwrapping a optional that’s nil.

The crashing thread looks like this:

Thread 0 name:   Dispatch queue: com.apple.main-thread
Thread 0 Crashed:
0   University Daily Kansan … 0x104a80000 + 605064
1   University Daily Kansan … 0x104a80000 + 603388
2   University Daily Kansan … 0x104a80000 + 1495056
3   University Daily Kansan … 0x104a80000 + 1876724
4   libdispatch.dylib       … _dispatch_call_block_and_release + 32

Frame 4 shows that the Dispatch is calling you. Frames 3 through 0 are not symbolicated, which makes it hard to work out why the code in frame 0 trapped. To make progress you’ll need to symbolicate your crash report. For advice on that, see Adding Identifiable Symbol Names to a Crash Report.

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

Apple reject app
 
 
Q