Abhi Yaduwanshi
Abhi Yaduwanshi

Reputation: 410

How to check main reason for crash in crash report shared by app store

I got these crash report from apple for one of my app. But am not sure what exactly they want to address. How can i figure out the reason from crash report. So, i can resolve the crash if it exists. Am not able to reproduce any crash.

Date/Time:           2019-09-26 11:57:38.1059 -0700
Launch Time:         2019-09-26 11:57:17.9594 -0700
OS Version:          iPhone OS 12.4.1 (16G102)
Baseband Version:    7.80.04
Report Version:      104

Exception Type:  EXC_CRASH (SIGKILL)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note:  EXC_CORPSE_NOTIFY
Termination Reason: Namespace SPRINGBOARD, Code 0x8badf00d
Termination Description: SPRINGBOARD, scene-create watchdog transgression: MY_APP_NAME exhausted real (wall clock) time allowance of 17.92 seconds | ProcessVisibility: Foreground | ProcessState: Running | WatchdogEvent: scene-create | WatchdogVisibility: Foreground | WatchdogCPUStatistics: ( | "Elapsed total CPU time (seconds): 30.440 (user 30.440, system 0.000), 51% CPU", | "Elapsed application CPU time (seconds): 0.520, 1% CPU" | )
Triggered by Thread:  0

Thread 0 name:  Dispatch queue: com.apple.main-thread
Thread 0 Crashed:

Upvotes: 1

Views: 373

Answers (1)

Lajos Arpad
Lajos Arpad

Reputation: 76414

Termination Description: SPRINGBOARD, scene-create watchdog transgression: MY_APP_NAME exhausted real (wall clock) time allowance of 17.92 seconds | ProcessVisibility: Foreground | ProcessState: Running | WatchdogEvent: scene-create | WatchdogVisibility: Foreground | WatchdogCPUStatistics: ( | "Elapsed total CPU time (seconds): 30.440 (user 30.440, system 0.000), 51% CPU", | "Elapsed application CPU time (seconds): 0.520, 1% CPU" | )

clearly suggests you have a timeout. Time allowance is of 17.92 seconds.

Upvotes: 1

Related Questions