Issue with App Crashing in TestFlight but Not in Xcode Debug/Release

Hi,

I am encountering an issue with my app when installing it via TestFlight. Specifically, the app crashes during installation or launch through TestFlight, but I do not experience this problem when running the app in release or debug mode within Xcode.

App Name: Flash Service - Clients

you can check that as well in image and file which i get from Phone Setting Analytics

Answered by DTS Engineer in 797320022

This is a watchdog crash, as described in Addressing watchdog terminations. The main thread looks like this:

Thread 0 name:   Dispatch queue: com.apple.main-thread
Thread 0 Crashed:
0   libsystem_kernel.dylib … __semwait_signal + 8
1   libsystem_c.dylib      … nanosleep + 216
2   libsystem_c.dylib      … sleep + 48
3   UserApp                … 0x1029b8000 + 4433584
4   UIKitCore              … -[UIApplication _terminateWithStatus:] + 192

Frame 4 suggests that the app is being terminated. Frame 3 is your code, which is then sleeping. I recommend that you symbolicate your crash report to uncover the identity of the code in frame 3

See Adding identifiable symbol names to a crash report for info on how to symbolicate.

Share and Enjoy

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

This is a watchdog crash, as described in Addressing watchdog terminations. The main thread looks like this:

Thread 0 name:   Dispatch queue: com.apple.main-thread
Thread 0 Crashed:
0   libsystem_kernel.dylib … __semwait_signal + 8
1   libsystem_c.dylib      … nanosleep + 216
2   libsystem_c.dylib      … sleep + 48
3   UserApp                … 0x1029b8000 + 4433584
4   UIKitCore              … -[UIApplication _terminateWithStatus:] + 192

Frame 4 suggests that the app is being terminated. Frame 3 is your code, which is then sleeping. I recommend that you symbolicate your crash report to uncover the identity of the code in frame 3

See Adding identifiable symbol names to a crash report for info on how to symbolicate.

Share and Enjoy

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

Issue with App Crashing in TestFlight but Not in Xcode Debug/Release
 
 
Q