App crashing after showing splash screen on TestFlight

Hello, my app crashing after showing splash screen on TestFlight.

I couldn't understand crash txt files. Could you explain what I should do?

Both your crash reports have this:

Exception Type:  EXC_CRASH (SIGABRT)

This almost always means the app crashed itself by calling abort. The most common cause of such problems is a unhandled language exception, and the presence of the Last Exception Backtrace section confirms that. Its backtrace looks like this:

Last Exception Backtrace:
0   CoreFoundation          … __exceptionPreprocess + 164
1   libobjc.A.dylib         … objc_exception_throw + 60
2   InmeHTS                 … 0x1048b0000 + 205180
3   InmeHTS                 … 0x1048b0000 + 287896
4   InmeHTS                 … 0x1048b0000 + 285516
5   libdispatch.dylib       … _dispatch_call_block_and_release + 32
6   libdispatch.dylib       … _dispatch_client_callout + 20
7   libdispatch.dylib       … _dispatch_lane_serial_drain + 672
8   libdispatch.dylib       … _dispatch_lane_invoke + 384
9   libdispatch.dylib       … _dispatch_workloop_worker_thread + 652
10  libsystem_pthread.dylib … _pthread_wqthread + 288
11  libsystem_pthread.dylib … start_wqthread + 8

Frame 2 shows that the language exception was thrown by your code. To make progress you need to identify that code. To do that, you need to symbolicate your log, per Adding Identifiable Symbol Names to a Crash Report.

Share and Enjoy

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

App crashing after showing splash screen on TestFlight
 
 
Q