app crashes on Review "exception" type":"EXC_CRASH","signal":"SIGABRT"},

I have an app with Expo Managed Workflow. I successfully built it via EAS and tested it in a simulator and development environment on my physical iPhone 15 Pro - iOS 18.2. When I run it in Preview without the "developmentClient": true in EAS config, The build completes, and I am able to download it to my phone, but when I try to open the app, it immediately crashes. Below is the crash report. I would appreciate any help and guidance on this matter.

Thanks!

Some additional observation about my log:

Key Sections of the Crash Log Exception Type and Signal: "exception" : {"codes":"0x0000000000000000, 0x0000000000000000","rawCodes":[0,0],"type":"EXC_CRASH","signal":"SIGABRT"}, "termination" : {"flags":0,"code":6,"namespace":"SIGNAL","indicator":"Abort trap: 6","byProc":"AtRestPreview","byPid":20276},

Type: EXC_CRASH Signal: SIGABRT Indicator: Abort trap: 6 This indicates that the app crashed due to an abort signal, which is often caused by an unhandled exception or a call to abort().

Faulting Thread: "faultingThread" : 7,

The faulting thread is thread 7, which is where the crash occurred.

The stack trace for the faulting thread shows the sequence of function calls leading to the crash. Key symbols include:

__pthread_kill pthread_kill abort abort_message _objc_terminate std::terminate _dispatch_client_callout _dispatch_lane_serial_drain _dispatch_lane_invoke _dispatch_root_queue_drain_deferred_wlh _dispatch_workloop_worker_thread

Summary The crash log indicates that the app crashed due to an unhandled Objective-C exception (objc_exception_throw). The exception was not caught, leading to an abort signal (SIGABRT). The crash occurred in the com.facebook.react.ExceptionsManagerQueue thread, which is part of the React Native framework.

app crashes on Review "exception" type":"EXC_CRASH","signal":"SIGABRT"},
 
 
Q