Rejected by Apple App Review due to crash on iPad. Unable to reproduce

I’ve tried many times to reproduce the crash that apple is reporting and I have submitted the build 3 times with small changes to apple and they are consistently reporting there is a crash occurring. I have tested on 3 different ipads with ios 16 and 17 and I am unable to reproduce the crash.

Could anyone point me in the direction on how to reproduce the crash or where the crash might be occurring?

Consider this:

Exception Type:  EXC_CRASH (SIGABRT)

It’s strong evidence that your app trapped, that is, it detected a failure condition and crashed itself by calling abort. The crashing thread backtrace confirms that:

Thread 9 name:  com.facebook.react.JavaScript
Thread 9 Crashed:
0   libsystem_kernel.dylib … 0x1eccdb000 + 40988
1   libsystem_c.dylib      … abort + 180
2   libsystem_c.dylib      … __assert_rtn + 284
3   wwwwwWW                … 0x1046f4000 + 2016712

Your code (frame 3) has failed an assert (frame 2) which has called abort (frame 1).

To debug this further you need to symbolicate your crash report to uncover the identity of frame 3 and the other frames in that backtrace. For more on that process, 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"

Rejected by Apple App Review due to crash on iPad. Unable to reproduce
 
 
Q