Can anybody help me to find what the error is, please?

The App does not crash with the simulator but does in Test Flight

Code Block
Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note: EXC_CORPSE_NOTIFY
Triggered by Thread: 11
Last Exception Backtrace:
0 CoreFoundation 0x1bf474cec __exceptionPreprocess + 216 (NSException.m:199)
1 libobjc.A.dylib 0x1bed813f0 objc_exception_throw + 56 (objc-exception.mm:565)
2 ios-tvOS 0x1013476c8 RCTFatal + 668
3 ios-tvOS 0x1013c2568 -[RCTExceptionsManager reportFatal:stack:exceptionId:suppressRedBox:] + 492
4 ios-tvOS 0x1013c2fa0 -[RCTExceptionsManager reportException:] + 1536
5 CoreFoundation 0x1bf479440 __invoking___ + 144
6 CoreFoundation 0x1bf35c5c0 -[NSInvocation invoke] + 300 (NSForwarding.m:3389)
7 CoreFoundation 0x1bf35cb20 -[NSInvocation invokeWithTarget:] + 76 (NSForwarding.m:3495)
8 ios-tvOS 0x1013762ac -[RCTModuleMethod invokeWithBridge:module:arguments:] + 460
9 ios-tvOS 0x101378440 facebook::react::invokeInner(RCTBridge*, RCTModuleData*, unsigned int, folly::dynamic const&) + 244
10 ios-tvOS 0x1013781a4 operator() + 44
11 ios-tvOS 0x1013781a4 invocation function for block in facebook::react::RCTNativeModule::invoke(unsigned int, folly::dynamic&&, int) + 88
12 libdispatch.dylib 0x1bee55638 _dispatch_call_block_and_release + 24 (init.c:1454)
13 libdispatch.dylib 0x1bee56e78 _dispatch_client_callout + 16 (object.m:559)
14 libdispatch.dylib 0x1bee5da04 _dispatch_lane_serial_drain + 612 (inline_internal.h:2548)
15 libdispatch.dylib 0x1bee5e4e0 _dispatch_lane_invoke + 424 (queue.c:3862)
16 libdispatch.dylib 0x1bee67f10 _dispatch_workloop_worker_thread + 708 (queue.c:6601)
17 libsystem_pthread.dylib 0x1bf0837ec _pthread_wqthread + 272 (pthread.c:2210)
18 libsystem_pthread.dylib 0x1bf08a590 start_wqthread + 8
.
.
.
Thread 11 name:
Thread 11 Crashed:
0 libsystem_kernel.dylib 0x00000001beffe84c __pthread_kill + 8
1 libsystem_pthread.dylib 0x00000001bf082c30 pthread_kill + 212 (pthread.c:1392)
2 libsystem_c.dylib 0x00000001bef6a8ac abort + 100 (abort.c:110)
3 libc++abi.dylib 0x00000001bed71cc8 abort_message + 128 (abort_message.cpp:76)
4 libc++abi.dylib 0x00000001bed63ca0 demangling_terminate_handler() + 296 (cxa_default_handlers.cpp:67)
5 libobjc.A.dylib 0x00000001bed816a0 _objc_terminate() + 124 (objc-exception.mm:701)
6 libc++abi.dylib 0x00000001bed71154 std::__terminate(void (*)()) + 16 (cxa_handlers.cpp:59)
7 libc++abi.dylib 0x00000001bed710ec std::terminate() + 44 (cxa_handlers.cpp:88)
8 libdispatch.dylib 0x00000001bee56e8c _dispatch_client_callout + 36 (object.m:562)
9 libdispatch.dylib 0x00000001bee5da04 _dispatch_lane_serial_drain + 612 (inline_internal.h:2548)
10 libdispatch.dylib 0x00000001bee5e4e0 _dispatch_lane_invoke + 424 (queue.c:3862)
11 libdispatch.dylib 0x00000001bee67f10 _dispatch_workloop_worker_thread + 708 (queue.c:6601)
12 libsystem_pthread.dylib 0x00000001bf0837ec _pthread_wqthread + 272 (pthread.c:2210)
13 libsystem_pthread.dylib 0x00000001bf08a590 start_wqthread + 8

Code Block
Last Exception Backtrace:
0 CoreFoundation … __exceptionPreprocess + 216 (NSException.m:199)
1 libobjc.A.dylib … objc_exception_throw + 56 (objc-exception.mm:565)
2 ios-tvOS … RCTFatal + 668
3 ios-tvOS … -[RCTExceptionsManager reportFatal:stack:exceptionId:suppressRedBox:] + 492
4 ios-tvOS … -[RCTExceptionsManager reportException:] + 1536
5 CoreFoundation … __invoking___ + 144
6 CoreFoundation … -[NSInvocation invoke] + 300 (NSForwarding.m:3389)
7 CoreFoundation … -[NSInvocation invokeWithTarget:] + 76 (NSForwarding.m:3495)
8 ios-tvOS … -[RCTModuleMethod invokeWithBridge:module:arguments:] + 460
9 ios-tvOS … facebook::react::invokeInner(RCTBridge*, RCTModuleData*, unsigned int, folly::dynamic…


The presence of the Last Exception Backtrace indicates that the app crashed because something threw a language exception that went unhandled. Looking up the backtrace this seems to be coming out of your third-party runtime. If you can reproduce this problem locally then you should monitor the system log at the time of the crash to see if anything relevant shows up. If not, my advice is that raise this issue with the support channel for the runtime you’re using.

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"
Can anybody help me to find what the error is, please?
 
 
Q