- 
                Notifications
    You must be signed in to change notification settings 
- Fork 103
Description
Issue
App crashes once in a while (after using app for a few minutes) and when it does happen, the app has to be reinstalled, because it crashes on every launch.
Crash is not catched by Instabug itself, the error comes from Apple Developer portal.
This also happens only on iOS (not Android).
React-native: 0.75.3
Instabug-react-native: 14.1.0
This also happened before in older versions (both react-native and Instabug)
Steps to repro
Build app in release mode.
I can't provide more steps, because this error happens randomly, once in a while.
Initialization of Instabug
const initialiseInstabug = () => {
  Instabug.init({
    token: config.instabugAppToken,
    invocationEvents: [InvocationEvent.shake],
    debugLogsLevel: LogLevel.verbose,
  });
  BugReporting.setExtendedBugReportMode(
    ExtendedBugReportMode.enabledWithOptionalFields,
  );
  Navigation.events() // Link RNN to instabug so that we can have repro steps
    .registerComponentDidAppearListener(Instabug.componentDidAppearListener);
  Instabug.setWelcomeMessageMode(WelcomeMessageMode.disabled);
  Instabug.setReproStepsConfig({ all: ReproStepsMode.enabled });
  Instabug.setSessionProfilerEnabled(true);
};
After Login user we call:
Instabug.identifyUser(email, name, id || email);
On logout we call:
Instabug.logOut();
Excepted behaviour
App does not crash and if it does, it does not have to be reinstalled.
Error
Seems like it crashes in native Instabug SDK (and maybe corrupts some app data?), but since the code is not available (or atlease I have not found it) I was unable to check it myself.
Triggered by Thread:  10
Last Exception Backtrace:
0   CoreFoundation                	0x1965ca5fc __exceptionPreprocess + 164 (NSException.m:249)
1   libobjc.A.dylib               	0x193b45244 objc_exception_throw + 88 (objc-exception.mm:356)
2   CoreFoundation                	0x1965c5708 -[__NSArrayM insertObject:atIndex:] + 1276 (NSArrayM.m:164)
3   Instabug                      	0x103bf7e74 __80-[IBGUserRepository deleteUsersAboveCountThresholdExceptUUID:completionHandler:]_block_invoke + 392
4   Instabug                      	0x103d1f70c __70-[IBGDALService writeASyncAfterCoreDataIntialization:completionBlock:]_block_invoke_3 + 44 (:-1)
5   CoreData                      	0x19e5c8a7c developerSubmittedBlockToNSManagedObjectContextPerform + 476 (NSManagedObjectContext.m:3984)
6   libdispatch.dylib             	0x19e35efa8 _dispatch_client_callout + 20 (object.m:576)
7   libdispatch.dylib             	0x19e3665cc _dispatch_lane_serial_drain + 768 (queue.c:3934)
8   libdispatch.dylib             	0x19e367124 _dispatch_lane_invoke + 380 (queue.c:4025)
9   libdispatch.dylib             	0x19e37238c _dispatch_root_queue_drain_deferred_wlh + 288 (queue.c:7193)
10  libdispatch.dylib             	0x19e371bd8 _dispatch_workloop_worker_thread + 540 (queue.c:6787)
11  libsystem_pthread.dylib       	0x221338680 _pthread_wqthread + 288 (pthread.c:2696)
12  libsystem_pthread.dylib       	0x221336474 start_wqthread + 8 (:-1)
Thread 0 name:
Thread 0:
0   libsystem_kernel.dylib        	0x00000001e7cfd924 __sysctl + 8 (:-1)
1   libsystem_c.dylib             	0x000000019e3b7da8 sysctl + 160 (sysctl.c:79)
2   libsystem_c.dylib             	0x000000019e3b7b34 uname + 136 (uname.c:57)
3   Instabug                      	0x0000000103d180dc -[IBGDeviceState getDeviceModel] + 48
4   Instabug                      	0x0000000103be4924 -[IBGSnapshotManager captureDeviceStatePartially] + 176
5   Instabug                      	0x0000000103be16e0 -[IBGSnapshotManager initWithWithPreSavedSnapshotStore:features:sessionLogger:logLogger:lock:sdkDefaults:] + 236
6   Instabug                      	0x0000000103be13a0 __36+[IBGSnapshotManager sharedInstance]_block_invoke + 204
7   libdispatch.dylib             	0x000000019e35efa8 _dispatch_client_callout + 20 (object.m:576)
8   libdispatch.dylib             	0x000000019e3607f4 _dispatch_once_callout + 32 (once.c:52)
9   Instabug                      	0x0000000103be12d0 +[IBGSnapshotManager sharedInstance] + 60
10  Instabug                      	0x0000000103f5d3c0 one-time initialization function for shared + 608
11  libdispatch.dylib             	0x000000019e35efa8 _dispatch_client_callout + 20 (object.m:576)
12  libdispatch.dylib             	0x000000019e3607f4 _dispatch_once_callout + 32 (once.c:52)
13  Instabug                      	0x0000000103f5d634 @objc static IBGCrashManager.shared.getter + 60
14  Instabug                      	0x0000000103dd634c +[Instabug intializeSDKStack] + 64
15  Instabug                      	0x0000000103dd5d28 +[Instabug intializeInstabugWithToken:invocationEvents:] + 948
16  inu                           	0x0000000102f2c79c +[RNInstabug initWithToken:invocationEvents:useNativeNetworkInterception:] + 88 (RNInstabug.m:30)
17  inu                           	0x0000000102f2c844 +[RNInstabug initWithToken:invocationEvents:debugLogsLevel:useNativeNetworkInterception:] + 88 (RNInstabug.m:50)
18  inu                           	0x0000000102f28db4 -[InstabugReactBridge init:invocationEvents:debugLogsLevel:useNativeNetworkInterception:codePushVersion:] + 292 (InstabugReactBridge.m:53)
19  CoreFoundation                	0x00000001965cce34 __invoking___ + 148 (:-1)
20  CoreFoundation                	0x00000001965cbe7c -[NSInvocation invoke] + 428 (NSForwarding.m:3411)
21  CoreFoundation                	0x000000019662fa38 -[NSInvocation invokeWithTarget:] + 64 (NSForwarding.m:3508)
22  inu                           	0x0000000102f94dd0 -[RCTModuleMethod invokeWithBridge:module:arguments:] + 380 (RCTModuleMethod.mm:584)
23  inu                           	0x0000000102f96f40 facebook::react::invokeInner(RCTBridge*, RCTModuleData*, unsigned int, folly::dynamic const&, int, (anonymous namespace)::SchedulingContext) + 452 (RCTNativeModule.mm:196)
24  inu                           	0x0000000102f96b94 facebook::react::RCTNativeModule::invoke(unsigned int, folly::dynamic&&, int)::$_0::operator()() const + 72 (RCTNativeModule.mm:113)
25  inu                           	0x0000000102f96b94 invocation function for block in facebook::react::RCTNativeModule::invoke(unsigned int, folly::dynamic&&, int) + 116 (RCTNativeModule.mm:104)
26  libdispatch.dylib             	0x000000019e35d248 _dispatch_call_block_and_release + 32 (init.c:1549)
27  libdispatch.dylib             	0x000000019e35efa8 _dispatch_client_callout + 20 (object.m:576)
28  libdispatch.dylib             	0x000000019e36da34 _dispatch_main_queue_drain + 984 (queue.c:8093)
29  libdispatch.dylib             	0x000000019e36d64c _dispatch_main_queue_callback_4CF + 44 (queue.c:8253)
30  CoreFoundation                	0x0000000196616bcc __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 16 (CFRunLoop.c:1793)
31  CoreFoundation                	0x00000001966131c0 __CFRunLoopRun + 1996 (CFRunLoop.c:3163)
32  CoreFoundation                	0x0000000196665284 CFRunLoopRunSpecific + 588 (CFRunLoop.c:3434)
33  GraphicsServices              	0x00000001e38d54c0 GSEventRunModal + 164 (GSEvent.c:2196)
34  UIKitCore                     	0x00000001991ae674 -[UIApplication _run] + 816 (UIApplication.m:3846)
35  UIKitCore                     	0x0000000198dd4e88 UIApplicationMain + 340 (UIApplication.m:5503)
36  inu                           	0x0000000102ba8bd0 main + 80 (main.m:8)
37  dyld                          	0x00000001bc8c1de8 start + 2724 (dyldMain.cpp:1338)
Thread 1:
0   libsystem_pthread.dylib       	0x000000022133646c start_wqthread + 0 (:-1)
Thread 2:
0   libsystem_pthread.dylib       	0x000000022133646c start_wqthread + 0 (:-1)
Thread 3:
0   libsystem_pthread.dylib       	0x000000022133646c start_wqthread + 0 (:-1)
Thread 4:
0   libsystem_pthread.dylib       	0x000000022133646c start_wqthread + 0 (:-1)
Thread 5 name:
Thread 5:
0   libsystem_kernel.dylib        	0x00000001e7cf8c7c pread + 8 (:-1)
1   libsqlite3.dylib              	0x00000001c47b83d8 seekAndRead + 96 (sqlite3.c:44042)
2   libsqlite3.dylib              	0x00000001c472e324 unixRead + 208 (sqlite3.c:44134)
3   libsqlite3.dylib              	0x00000001c473f11c walIndexReadHdr + 2576 (sqlite3.c:74583)
4   libsqlite3.dylib              	0x00000001c473e00c walTryBeginRead + 712 (sqlite3.c:74900)
5   libsqlite3.dylib              	0x00000001c473cdc4 sqlite3PagerSharedLock + 520 (sqlite3.c:69351)
6   libsqlite3.dylib              	0x00000001c47c38ac btreeBeginTrans + 816 (sqlite3.c:80508)
7   libsqlite3.dylib              	0x00000001c4738bd4 sqlite3InitOne + 580 (sqlite3.c:148090)
8   libsqlite3.dylib              	0x00000001c4738914 sqlite3Init + 76 (sqlite3.c:148284)
9   libsqlite3.dylib              	0x00000001c4761370 sqlite3LocateTable + 204 (sqlite3.c:128115)
10  libsqlite3.dylib              	0x00000001c474779c selectExpander + 564 (sqlite3.c:154927)
11  libsqlite3.dylib              	0x00000001c47472fc sqlite3WalkSelect + 60 (sqlite3.c:113418)
12  libsqlite3.dylib              	0x00000001c47e9540 sqlite3SelectPrep + 164 (sqlite3.c:155342)
13  libsqlite3.dylib              	0x00000001c4742260 sqlite3Select + 352 (sqlite3.c:156088)
14  libsqlite3.dylib              	0x00000001c4731cb4 yy_reduce + 1860 (sqlite3.c:181704)
15  libsqlite3.dylib              	0x00000001c4730814 sqlite3RunParser + 996 (sqlite3.c:184445)
16  libsqlite3.dylib              	0x00000001c472fec0 sqlite3Prepare + 420 (sqlite3.c:148617)
17  libsqlite3.dylib              	0x00000001c472fb8c sqlite3LockAndPrepare + 224 (sqlite3.c:148695)
18  CoreData                      	0x000000019e5d6f7c -[NSSQLiteConnection prepareSQLStatement:] + 460 (NSSQLiteConnection.m:4413)
19  CoreData                      	0x000000019e6341a8 -[NSSQLiteConnection _hasTableWithName:isTemp:] + 520 (NSSQLiteConnection.m:6689)
20  CoreData                      	0x000000019e601fc0 -[NSSQLiteConnection connect] + 1716 (NSSQLiteConnection.m:2340)
21  CoreData                      	0x000000019e669114 __32-[NSSQLCore _loadAndSetMetadata]_block_invoke + 96 (NSSQLCore.m:1980)
22  CoreData                      	0x000000019e60116c __37-[NSSQLiteConnection performAndWait:]_block_invoke + 48 (NSSQLiteConnection.m:755)
23  libdispatch.dylib             	0x000000019e35efa8 _dispatch_client_callout + 20 (object.m:576)
24  libdispatch.dylib             	0x000000019e36e7fc _dispatch_lane_barrier_sync_invoke_and_complete + 56 (queue.c:1104)
25  CoreData                      	0x000000019e5bbd30 -[NSSQLiteConnection performAndWait:] + 176 (NSSQLiteConnection.m:752)
26  CoreData                      	0x000000019e66b04c -[NSSQLCore loadMetadata:] + 336 (NSSQLCore.m:2026)
27  CoreData                      	0x000000019e669c50 __91-[NSPersistentStoreCoordinator addPersistentStoreWithType:configuration:URL:options:error:]_block_invoke + 2348 (NSPersistentStoreCoordinator.m:1618)
28  CoreData                      	0x000000019e5de7e4 gutsOfBlockToNSPersistentStoreCoordinatorPerform + 464 (NSPersistentStoreCoordinator.m:421)
29  libdispatch.dylib             	0x000000019e35efa8 _dispatch_client_callout + 20 (object.m:576)
30  libdispatch.dylib             	0x000000019e36e7fc _dispatch_lane_barrier_sync_invoke_and_complete + 56 (queue.c:1104)
31  CoreData                      	0x000000019e5dcccc _perform + 224 (NSPersistentStoreCoordinator.m:550)
32  CoreData                      	0x000000019e66fa08 -[NSPersistentStoreCoordinator addPersistentStoreWithType:configuration:URL:options:error:] + 424 (NSPersistentStoreCoordinator.m:1505)
33  Instabug                      	0x0000000103d20940 __56-[IBGCoreDataManager initializePersistentStoreInMemory:]_block_invoke + 628
34  libdispatch.dylib             	0x000000019e35d248 _dispatch_call_block_and_release + 32 (init.c:1549)
35  libdispatch.dylib             	0x000000019e35efa8 _dispatch_client_callout + 20 (object.m:576)
36  libdispatch.dylib             	0x000000019e371094 _dispatch_root_queue_drain + 860 (queue.c:7331)
37  libdispatch.dylib             	0x000000019e3716c4 _dispatch_worker_thread2 + 156 (queue.c:7399)
38  libsystem_pthread.dylib       	0x0000000221338644 _pthread_wqthread + 228 (pthread.c:2709)
39  libsystem_pthread.dylib       	0x0000000221336474 start_wqthread + 8 (:-1)
Thread 6:
0   libsystem_pthread.dylib       	0x000000022133646c start_wqthread + 0 (:-1)
Thread 7 name:
Thread 7:
0   libsystem_kernel.dylib        	0x00000001e7cf8788 mach_msg2_trap + 8 (:-1)
1   libsystem_kernel.dylib        	0x00000001e7cfbe98 mach_msg2_internal + 80 (mach_msg.c:201)
2   libsystem_kernel.dylib        	0x00000001e7cfbdb0 mach_msg_overwrite + 424 (mach_msg.c:0)
3   libsystem_kernel.dylib        	0x00000001e7cfbbfc mach_msg + 24 (mach_msg.c:323)
4   CoreFoundation                	0x0000000196613804 __CFRunLoopServiceMachPort + 160 (CFRunLoop.c:2637)
5   CoreFoundation                	0x0000000196612eb0 __CFRunLoopRun + 1212 (CFRunLoop.c:3021)
6   CoreFoundation                	0x0000000196665284 CFRunLoopRunSpecific + 588 (CFRunLoop.c:3434)
7   Foundation                    	0x00000001951cb0e8 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 212 (NSRunLoop.m:373)
8   Foundation                    	0x0000000195327bb0 -[NSRunLoop(NSRunLoop) runUntilDate:] + 64 (NSRunLoop.m:420)
9   UIKitCore                     	0x0000000199241a78 -[UIEventFetcher threadMain] + 420 (UIEventFetcher.m:1351)
10  Foundation                    	0x00000001952b6f30 __NSThread__start__ + 724 (NSThread.m:991)
11  libsystem_pthread.dylib       	0x00000002213367d0 _pthread_start + 136 (pthread.c:931)
12  libsystem_pthread.dylib       	0x0000000221336480 thread_start + 8 (:-1)
Thread 8 name:
Thread 8:
0   libsystem_kernel.dylib        	0x00000001e7cf8704 semaphore_wait_trap + 8 (:-1)
1   libdispatch.dylib             	0x000000019e35f544 _dispatch_sema4_wait + 28 (lock.c:139)
2   libdispatch.dylib             	0x000000019e35fbf8 _dispatch_semaphore_wait_slow + 132 (semaphore.c:132)
3   inu                           	0x000000010314404c static Smartlook.instance.getter + 208
4   inu                           	0x0000000103275798 @objc static SmartlookObjc.preferredUseAdaptiveFrameRate.setter + 36
5   CoreFoundation                	0x00000001965cce34 __invoking___ + 148 (:-1)
6   CoreFoundation                	0x00000001965cbe7c -[NSInvocation invoke] + 428 (NSForwarding.m:3411)
7   CoreFoundation                	0x000000019662fa38 -[NSInvocation invokeWithTarget:] + 64 (NSForwarding.m:3508)
8   inu                           	0x0000000102f94dd0 -[RCTModuleMethod invokeWithBridge:module:arguments:] + 380 (RCTModuleMethod.mm:584)
9   inu                           	0x0000000102f96f40 facebook::react::invokeInner(RCTBridge*, RCTModuleData*, unsigned int, folly::dynamic const&, int, (anonymous namespace)::SchedulingContext) + 452 (RCTNativeModule.mm:196)
10  inu                           	0x0000000102f96b94 facebook::react::RCTNativeModule::invoke(unsigned int, folly::dynamic&&, int)::$_0::operator()() const + 72 (RCTNativeModule.mm:113)
11  inu                           	0x0000000102f96b94 invocation function for block in facebook::react::RCTNativeModule::invoke(unsigned int, folly::dynamic&&, int) + 116 (RCTNativeModule.mm:104)
12  libdispatch.dylib             	0x000000019e35d248 _dispatch_call_block_and_release + 32 (init.c:1549)
13  libdispatch.dylib             	0x000000019e35efa8 _dispatch_client_callout + 20 (object.m:576)
14  libdispatch.dylib             	0x000000019e3665cc _dispatch_lane_serial_drain + 768 (queue.c:3934)
15  libdispatch.dylib             	0x000000019e367124 _dispatch_lane_invoke + 380 (queue.c:4025)
16  libdispatch.dylib             	0x000000019e37238c _dispatch_root_queue_drain_deferred_wlh + 288 (queue.c:7193)
17  libdispatch.dylib             	0x000000019e371bd8 _dispatch_workloop_worker_thread + 540 (queue.c:6787)
18  libsystem_pthread.dylib       	0x0000000221338680 _pthread_wqthread + 288 (pthread.c:2696)
19  libsystem_pthread.dylib       	0x0000000221336474 start_wqthread + 8 (:-1)
Thread 9 name:
Thread 9:
0   CoreFoundation                	0x00000001965b10a4 +[NSArray allocWithZone:] + 48 (NSArray.m:691)
1   libobjc.A.dylib               	0x0000000193b1ce14 objc_alloc_init + 80 (NSObject.mm:2085)
2   CoreData                      	0x000000019e5c2898 -[NSSQLFetchIntermediate initWithScope:] + 68 (NSSQLFetchIntermediate.m:23)
3   CoreData                      	0x000000019e5c281c -[NSSQLStatementIntermediate initWithEntity:alias:inScope:] + 36 (NSSQLStatementIntermediate.m:16)
4   CoreData                      	0x000000019e5c1534 -[NSSQLGenerator newSQLStatementForRequest:ignoreInheritance:countOnly:nestingLevel:nestIsWhereScoped:requestContext:] + 2368 (NSSQLGenerator.m:660)
5   CoreData                      	0x000000019e6215e0 -[NSSQLiteAdapter _newStatementForFetchRequestContext:ignoreInheritance:countOnly:nestingLevel:] + 116 (NSSQLiteAdapter.m:375)
6   CoreData                      	0x000000019e5e0498 -[NSSQLFetchRequestContext fetchStatement] + 152 (NSSQLFetchRequestContext.m:333)
7   CoreData                      	0x000000019e633cfc _executeCountRequest + 204 (NSSQLCore_Functions.m:2701)
8   CoreData                      	0x000000019e633bcc -[NSSQLCountRequestContext executeRequestCore:] + 28 (NSSQLCountRequestContext.m:24)
9   CoreData                      	0x000000019e60150c -[NSSQLStoreRequestContext executeRequestUsingConnection:] + 240 (NSSQLStoreRequestContext.m:183)
10  CoreData                      	0x000000019e601234 __52-[NSSQLDefaultConnectionManager handleStoreRequest:]_block_invoke + 60 (NSSQLConnectionManager.m:307)
11  CoreData                      	0x000000019e60116c __37-[NSSQLiteConnection performAndWait:]_block_invoke + 48 (NSSQLiteConnection.m:755)
12  libdispatch.dylib             	0x000000019e35efa8 _dispatch_client_callout + 20 (object.m:576)
13  libdispatch.dylib             	0x000000019e36e7fc _dispatch_lane_barrier_sync_invoke_and_complete + 56 (queue.c:1104)
14  CoreData                      	0x000000019e5bbd30 -[NSSQLiteConnection performAndWait:] + 176 (NSSQLiteConnection.m:752)
15  CoreData                      	0x000000019e5bbbf4 -[NSSQLDefaultConnectionManager handleStoreRequest:] + 248 (NSSQLConnectionManager.m:302)
16  CoreData                      	0x000000019e5bbac4 -[NSSQLCoreDispatchManager routeStoreRequest:] + 228 (NSSQLCoreDispatchManager.m:60)
17  CoreData                      	0x000000019e5bb8c8 -[NSSQLCore dispatchRequest:withRetries:] + 172 (NSSQLCore.m:4044)
18  CoreData                      	0x000000019e5d48a4 -[NSSQLCore executeRequest:withContext:error:] + 420 (NSSQLCore.m:3005)
19  CoreData                      	0x000000019e60eff0 __65-[NSPersistentStoreCoordinator executeRequest:withContext:error:]_block_invoke.547 + 4232 (NSPersistentStoreCoordinator.m:3036)
20  CoreData                      	0x000000019e5dc7ec -[NSPersistentStoreCoordinator _routeHeavyweightBlock:] + 264 (NSPersistentStoreCoordinator.m:668)
21  CoreData                      	0x000000019e5e4eb4 -[NSPersistentStoreCoordinator executeRequest:withContext:error:] + 1200 (NSPersistentStoreCoordinator.m:2810)
22  CoreData                      	0x000000019e62c638 -[NSManagedObjectContext _countWithNoChangesForRequest:error:] + 256 (NSManagedObjectContext.m:4922)
23  CoreData                      	0x000000019e63c100 -[NSManagedObjectContext _countForFetchRequest_:error:] + 192 (NSManagedObjectContext.m:2061)
24  CoreData                      	0x000000019e63c020 -[NSManagedObjectContext countForFetchRequest:error:] + 32 (NSManagedObjectContext.m:2132)
25  CoreData                      	0x000000019e63bfac NSManagedObjectContext.count<A>(for:) + 72 (NSManagedObjectContext.swift:36)
26  Instabug                      	0x0000000103d22874 NSManagedObjectContext.safeCount<A>(for:) + 24
27  Instabug                      	0x0000000103e3bf78 closure #1 in APMPersistenceManager.sessionDescriptions(in:from:) + 392
28  Instabug                      	0x0000000103e3d00c specialized Collection.map<A>(_:) + 192
29  Instabug                      	0x0000000103e3d8ec specialized APMPersistenceManager.sessionDescriptions(in:from:) + 60
30  Instabug                      	0x0000000103e4d1a0 closure #1 in APMPersistenceManager.cleanUpSessions() + 164
31  Instabug                      	0x0000000103c40c24 thunk for @escaping @callee_guaranteed (@guaranteed NSManagedObjectContext?) -> () + 52 (:-1)
32  Instabug                      	0x0000000103d1f70c __70-[IBGDALService writeASyncAfterCoreDataIntialization:completionBlock:]_block_invoke_3 + 44 (:-1)
33  CoreData                      	0x000000019e5c8a7c developerSubmittedBlockToNSManagedObjectContextPerform + 476 (NSManagedObjectContext.m:3984)
34  libdispatch.dylib             	0x000000019e35efa8 _dispatch_client_callout + 20 (object.m:576)
35  libdispatch.dylib             	0x000000019e3665cc _dispatch_lane_serial_drain + 768 (queue.c:3934)
36  libdispatch.dylib             	0x000000019e367124 _dispatch_lane_invoke + 380 (queue.c:4025)
37  libdispatch.dylib             	0x000000019e37238c _dispatch_root_queue_drain_deferred_wlh + 288 (queue.c:7193)
38  libdispatch.dylib             	0x000000019e371bd8 _dispatch_workloop_worker_thread + 540 (queue.c:6787)
39  libsystem_pthread.dylib       	0x0000000221338680 _pthread_wqthread + 288 (pthread.c:2696)
40  libsystem_pthread.dylib       	0x0000000221336474 start_wqthread + 8 (:-1)
Thread 10 name:
Thread 10 Crashed:
0   libsystem_kernel.dylib        	0x00000001e7d032d4 __pthread_kill + 8 (:-1)
1   libsystem_pthread.dylib       	0x000000022133d59c pthread_kill + 268 (pthread.c:1721)
2   libsystem_c.dylib             	0x000000019e418b08 abort + 128 (abort.c:122)
3   libc++abi.dylib               	0x00000002212635b8 abort_message + 132 (abort_message.cpp:78)
4   libc++abi.dylib               	0x0000000221251bac demangling_terminate_handler() + 348 (cxa_default_handlers.cpp:77)
5   libobjc.A.dylib               	0x0000000193b472c4 _objc_terminate() + 156 (objc-exception.mm:496)
6   libc++abi.dylib               	0x000000022126287c std::__terminate(void (*)()) + 16 (cxa_handlers.cpp:59)
7   libc++abi.dylib               	0x0000000221262820 std::terminate() + 108 (cxa_handlers.cpp:88)
8   libdispatch.dylib             	0x000000019e35efbc _dispatch_client_callout + 40 (object.m:579)
9   libdispatch.dylib             	0x000000019e3665cc _dispatch_lane_serial_drain + 768 (queue.c:3934)
10  libdispatch.dylib             	0x000000019e367124 _dispatch_lane_invoke + 380 (queue.c:4025)
11  libdispatch.dylib             	0x000000019e37238c _dispatch_root_queue_drain_deferred_wlh + 288 (queue.c:7193)
12  libdispatch.dylib             	0x000000019e371bd8 _dispatch_workloop_worker_thread + 540 (queue.c:6787)
13  libsystem_pthread.dylib       	0x0000000221338680 _pthread_wqthread + 288 (pthread.c:2696)
14  libsystem_pthread.dylib       	0x0000000221336474 start_wqthread + 8 (:-1)
Thread 11 name:
Thread 11:
0   hermes                        	0x0000000104ee5424 hermes::vm::strictEqualityTest(hermes::vm::HermesValue, hermes::vm::HermesValue) + 56 (Operations.cpp:1261)
1   hermes                        	0x0000000104ec0e1c hermes::vm::CallResult<hermes::vm::HermesValue, (hermes::vm::detail::CallResultSpecialize)2> hermes::vm::Interpreter::interpretFunction<false, false>(hermes::vm::Runtime&, hermes::vm::InterpreterSt... + 15968 (Interpreter.cpp:3056)
2   hermes                        	0x0000000104ebcf94 hermes::vm::Runtime::interpretFunctionImpl(hermes::vm::CodeBlock*) + 52 (:-1)
3   hermes                        	0x0000000104eaffe8 hermes::vm::JSFunction::_callImpl(hermes::vm::Handle<hermes::vm::Callable>, hermes::vm::Runtime&) + 40 (:-1)
4   hermes                        	0x0000000104eaecd8 hermes::vm::Callable::executeCall3(hermes::vm::Handle<hermes::vm::Callable>, hermes::vm::Runtime&, hermes::vm::Handle<hermes::vm::HermesValue>, hermes::vm::HermesValue, hermes::vm::HermesValue, her... + 180 (:-1)
5   hermes                        	0x0000000104f06ad4 hermes::vm::arrayPrototypeForEach(void*, hermes::vm::Runtime&, hermes::vm::NativeArgs) + 652 (:-1)
6   hermes                        	0x0000000104eaff00 hermes::vm::NativeFunction::_nativeCall(hermes::vm::NativeFunction*, hermes::vm::Runtime&) + 140 (:-1)
7   hermes                        	0x0000000104ebbf9c hermes::vm::Interpreter::handleCallSlowPath(hermes::vm::Runtime&, hermes::vm::PinnedHermesValue*) + 60 (:-1)
8   hermes                        	0x0000000104ebd9a8 hermes::vm::CallResult<hermes::vm::HermesValue, (hermes::vm::detail::CallResultSpecialize)2> hermes::vm::Interpreter::interpretFunction<false, false>(hermes::vm::Runtime&, hermes::vm::InterpreterSt... + 2540 (:-1)
9   hermes                        	0x0000000104ebcf94 hermes::vm::Runtime::interpretFunctionImpl(hermes::vm::CodeBlock*) + 52 (:-1)
10  hermes                        	0x0000000104eaffe8 hermes::vm::JSFunction::_callImpl(hermes::vm::Handle<hermes::vm::Callable>, hermes::vm::Runtime&) + 40 (:-1)
11  hermes                        	0x0000000104eaecd8 hermes::vm::Callable::executeCall3(hermes::vm::Handle<hermes::vm::Callable>, hermes::vm::Runtime&, hermes::vm::Handle<hermes::vm::HermesValue>, hermes::vm::HermesValue, hermes::vm::HermesValue, her... + 180 (:-1)
12  hermes                        	0x0000000104f06ad4 hermes::vm::arrayPrototypeForEach(void*, hermes::vm::Runtime&, hermes::vm::NativeArgs) + 652 (:-1)
13  hermes                        	0x0000000104eaff00 hermes::vm::NativeFunction::_nativeCall(hermes::vm::NativeFunction*, hermes::vm::Runtime&) + 140 (:-1)
14  hermes                        	0x0000000104ebbf9c hermes::vm::Interpreter::handleCallSlowPath(hermes::vm::Runtime&, hermes::vm::PinnedHermesValue*) + 60 (:-1)
15  hermes                        	0x0000000104ebd9a8 hermes::vm::CallResult<hermes::vm::HermesValue, (hermes::vm::detail::CallResultSpecialize)2> hermes::vm::Interpreter::interpretFunction<false, false>(hermes::vm::Runtime&, hermes::vm::InterpreterSt... + 2540 (:-1)
16  hermes                        	0x0000000104ebcf94 hermes::vm::Runtime::interpretFunctionImpl(hermes::vm::CodeBlock*) + 52 (:-1)
17  hermes                        	0x0000000104eaffe8 hermes::vm::JSFunction::_callImpl(hermes::vm::Handle<hermes::vm::Callable>, hermes::vm::Runtime&) + 40 (:-1)
18  hermes                        	0x0000000104eaf20c hermes::vm::Callable::call(hermes::vm::Handle<hermes::vm::Callable>, hermes::vm::Runtime&) + 44 (Callable.h:253)
19  hermes                        	0x0000000104eaf20c hermes::vm::Callable::executeCall(hermes::vm::Handle<hermes::vm::Callable>, hermes::vm::Runtime&, hermes::vm::Handle<hermes::vm::HermesValue>, hermes::vm::Handle<hermes::vm::HermesValue>, hermes::v... + 1004 (Callable.cpp:357)
20  hermes                        	0x0000000104f3fdc0 hermes::vm::functionPrototypeApply(void*, hermes::vm::Runtime&, hermes::vm::NativeArgs) + 344 (:-1)
21  hermes                        	0x0000000104eaff00 hermes::vm::NativeFunction::_nativeCall(hermes::vm::NativeFunction*, hermes::vm::Runtime&) + 140 (:-1)
22  hermes                        	0x0000000104ebbf9c hermes::vm::Interpreter::handleCallSlowPath(hermes::vm::Runtime&, hermes::vm::PinnedHermesValue*) + 60 (:-1)
23  hermes                        	0x0000000104ebd9a8 hermes::vm::CallResult<hermes::vm::HermesValue, (hermes::vm::detail::CallResultSpecialize)2> hermes::vm::Interpreter::interpretFunction<false, false>(hermes::vm::Runtime&, hermes::vm::InterpreterSt... + 2540 (:-1)
24  hermes                        	0x0000000104ebcf94 hermes::vm::Runtime::interpretFunctionImpl(hermes::vm::CodeBlock*) + 52 (:-1)
25  hermes                        	0x0000000104eaffe8 hermes::vm::JSFunction::_callImpl(hermes::vm::Handle<hermes::vm::Callable>, hermes::vm::Runtime&) + 40 (:-1)
26  hermes                        	0x0000000104eafbf4 hermes::vm::BoundFunction::_boundCall(hermes::vm::BoundFunction*, hermes::inst::Inst const*, hermes::vm::Runtime&) + 416 (:-1)
27  hermes                        	0x0000000104ebbfb8 hermes::vm::Interpreter::handleCallSlowPath(hermes::vm::Runtime&, hermes::vm::PinnedHermesValue*) + 88 (:-1)
28  hermes                        	0x0000000104ebd9a8 hermes::vm::CallResult<hermes::vm::HermesValue, (hermes::vm::detail::CallResultSpecialize)2> hermes::vm::Interpreter::interpretFunction<false, false>(hermes::vm::Runtime&, hermes::vm::InterpreterSt... + 2540 (:-1)
29  hermes                        	0x0000000104ebcf94 hermes::vm::Runtime::interpretFunctionImpl(hermes::vm::CodeBlock*) + 52 (:-1)
30  hermes                        	0x0000000104eaffe8 hermes::vm::JSFunction::_callImpl(hermes::vm::Handle<hermes::vm::Callable>, hermes::vm::Runtime&) + 40 (:-1)
31  hermes                        	0x0000000104eafbf4 hermes::vm::BoundFunction::_boundCall(hermes::vm::BoundFunction*, hermes::inst::Inst const*, hermes::vm::Runtime&) + 416 (:-1)
32  hermes                        	0x0000000104e99680 facebook::hermes::HermesRuntimeImpl::call(facebook::jsi::Function const&, facebook::jsi::Value const&, facebook::jsi::Value const*, unsigned long) + 284 (:-1)
33  inu                           	0x00000001032c7af4 facebook::jsi::Function::call(facebook::jsi::Runtime&, facebook::jsi::Value const*, unsigned long) const + 40 (jsi-inl.h:264)
34  inu                           	0x00000001032c7af4 facebook::jsi::Function::call(facebook::jsi::Runtime&, std::initializer_list<facebook::jsi::Value>) const + 40 (jsi-inl.h:269)
35  inu                           	0x00000001032c7af4 facebook::jsi::Value facebook::jsi::Function::call<double const&, facebook::jsi::Value>(facebook::jsi::Runtime&, double const&, facebook::jsi::Value&&) const + 76 (jsi-inl.h:277)
36  inu                           	0x00000001032c7af4 facebook::react::JSIExecutor::invokeCallback(double, folly::dynamic const&) + 192 (JSIExecutor.cpp:258)
37  inu                           	0x0000000103298838 std::__1::__function::__value_func<void (facebook::react::JSExecutor*)>::operator()[abi:ne180100](facebook::react::JSExecutor*&&) const + 24 (function.h:428)
38  inu                           	0x0000000103298838 std::__1::function<void (facebook::react::JSExecutor*)>::operator()(facebook::react::JSExecutor*) const + 24 (function.h:981)
39  inu                           	0x0000000103298838 facebook::react::NativeToJsBridge::runOnExecutorQueue(std::__1::function<void (facebook::react::JSExecutor*)>&&)::$_0::operator()() const + 48 (NativeToJsBridge.cpp:308)
40  inu                           	0x0000000103298838 decltype(std::declval<facebook::react::NativeToJsBridge::runOnExecutorQueue(std::__1::function<void (facebook::react::JSExecutor*)>&&)::$_0&>()()) std::__1::__invoke[abi:ne180100]<facebook::react::... + 48 (invoke.h:344)
41  inu                           	0x0000000103298838 void std::__1::__invoke_void_return_wrapper<void, true>::__call[abi:ne180100]<facebook::react::NativeToJsBridge::runOnExecutorQueue(std::__1::function<void (facebook::react::JSExecutor*)>&&)::$_0&>... + 48 (invoke.h:419)
42  inu                           	0x0000000103298838 std::__1::__function::__alloc_func<facebook::react::NativeToJsBridge::runOnExecutorQueue(std::__1::function<void (facebook::react::JSExecutor*)>&&)::$_0, std::__1::allocator<facebook::react::Native... + 48 (function.h:169)
43  inu                           	0x0000000103298838 std::__1::__function::__func<facebook::react::NativeToJsBridge::runOnExecutorQueue(std::__1::function<void (facebook::react::JSExecutor*)>&&)::$_0, std::__1::allocator<facebook::react::NativeToJsBr... + 60 (function.h:311)
44  inu                           	0x0000000102f807a4 std::__1::__function::__value_func<void ()>::operator()[abi:ne180100]() const + 20 (function.h:428)
45  inu                           	0x0000000102f807a4 std::__1::function<void ()>::operator()() const + 20 (function.h:981)
46  inu                           	0x0000000102f807a4 facebook::react::tryAndReturnError(std::__1::function<void ()> const&) + 32 (RCTCxxUtils.mm:73)
47  inu                           	0x0000000102f8d9b4 facebook::react::RCTMessageThread::tryFunc(std::__1::function<void ()> const&) + 24 (RCTMessageThread.mm:68)
48  inu                           	0x0000000102f8d7b8 std::__1::__function::__value_func<void ()>::operator()[abi:ne180100]() const + 20 (function.h:428)
49  inu                           	0x0000000102f8d7b8 std::__1::function<void ()>::operator()() const + 20 (function.h:981)
50  inu                           	0x0000000102f8d7b8 invocation function for block in facebook::react::RCTMessageThread::runAsync(std::__1::function<void ()>) + 44 (RCTMessageThread.mm:44)
51  CoreFoundation                	0x0000000196616d90 __CFRUNLOOP_IS_CALLING_OUT_TO_A_BLOCK__ + 28 (CFRunLoop.c:1818)
52  CoreFoundation                	0x0000000196613690 __CFRunLoopDoBlocks + 356 (CFRunLoop.c:1860)
53  CoreFoundation                	0x0000000196613374 __CFRunLoopRun + 2432 (CFRunLoop.c:3217)
54  CoreFoundation                	0x0000000196665284 CFRunLoopRunSpecific + 588 (CFRunLoop.c:3434)
55  inu                           	0x0000000102f762a8 +[RCTCxxBridge runRunLoop] + 212 (RCTCxxBridge.mm:328)
56  Foundation                    	0x00000001952b6f30 __NSThread__start__ + 724 (NSThread.m:991)
57  libsystem_pthread.dylib       	0x00000002213367d0 _pthread_start + 136 (pthread.c:931)
58  libsystem_pthread.dylib       	0x0000000221336480 thread_start + 8 (:-1)
Thread 12 name:
Thread 12:
0   libsystem_kernel.dylib        	0x00000001e7cfe090 __psynch_cvwait + 8 (:-1)
1   libsystem_pthread.dylib       	0x0000000221338f98 _pthread_cond_wait + 1204 (pthread_cond.c:862)
2   libc++.1.dylib                	0x00000001a6e5f584 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 28 (condition_variable.cpp:30)
3   hermes                        	0x0000000104f58f24 hermes::vm::HadesGC::Executor::worker() + 116 (:-1)
4   hermes                        	0x0000000104f58e8c void* std::__1::__thread_proxy[abi:v160006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, hermes::vm::HadesGC::Executor::Exec... + 44 (:-1)
5   libsystem_pthread.dylib       	0x00000002213367d0 _pthread_start + 136 (pthread.c:931)
6   libsystem_pthread.dylib       	0x0000000221336480 thread_start + 8 (:-1)
Thread 13 name:
Thread 13:
0   libsystem_kernel.dylib        	0x00000001e7cf871c semaphore_timedwait_trap + 8 (:-1)
1   libdispatch.dylib             	0x000000019e35f5c0 _dispatch_sema4_timedwait + 64 (lock.c:154)
2   libdispatch.dylib             	0x000000019e35fbc0 _dispatch_semaphore_wait_slow + 76 (semaphore.c:116)
3   libdispatch.dylib             	0x000000019e370c94 _dispatch_worker_thread + 324 (queue.c:7509)
4   libsystem_pthread.dylib       	0x00000002213367d0 _pthread_start + 136 (pthread.c:931)
5   libsystem_pthread.dylib       	0x0000000221336480 thread_start + 8 (:-1)
Thread 10 crashed with ARM Thread State (64-bit):
    x0: 0x0000000000000000   x1: 0x0000000000000000   x2: 0x0000000000000000   x3: 0x0000000000000000
    x4: 0x0000000221267f3b   x5: 0x000000016d7d2800   x6: 0x000000000000006e   x7: 0x0000000000000000
    x8: 0x799a4ce2c214264c   x9: 0x799a4ce3af69164c  x10: 0x0000000000000051  x11: 0x000000000000000b
   x12: 0x000000000000000b  x13: 0x0000000196a4a9ac  x14: 0x00000000001ff800  x15: 0x00000000000007fb
   x16: 0x0000000000000148  x17: 0x000000016d7d3000  x18: 0x0000000000000000  x19: 0x0000000000000006
   x20: 0x0000000000004c03  x21: 0x000000016d7d30e0  x22: 0x0000000000000000  x23: 0x0000000000000104
   x24: 0x0000000301b8d4e8  x25: 0x0000000000000000  x26: 0x000000016d7d30e0  x27: 0x00000003020fb040
   x28: 0x00000003020ddc80   fp: 0x000000016d7d2770   lr: 0x000000022133d59c
    sp: 0x000000016d7d2750   pc: 0x00000001e7d032d4 cpsr: 0x40001000
   esr: 0x56000080  Address size fault
Binary Images:
        0x102ba0000 -         0x10355bfff inu arm64  <a0a47f6bbe9137eb8b7a6d0027be2909> /private/var/containers/Bundle/Application/D4C2D75C-392E-4C9D-A5AB-C29F6194D446/inu.app/inu
        0x103858000 -         0x1038b7fff OneSignal arm64  <d00229b78df1375a9148a26a4c0bbb39> /private/var/containers/Bundle/Application/D4C2D75C-392E-4C9D-A5AB-C29F6194D446/inu.app/Frameworks/OneSignal.framework/OneSignal
        0x1039a8000 -         0x1039bffff OneSignalCore arm64  <88ed0882246e380695b843d81aefe8da> /private/var/containers/Bundle/Application/D4C2D75C-392E-4C9D-A5AB-C29F6194D446/inu.app/Frameworks/OneSignalCore.framework/OneSignalCore
        0x1039dc000 -         0x1039ebfff OneSignalExtension arm64  <a6806184a9273c83a95d2c864a442353> /private/var/containers/Bundle/Application/D4C2D75C-392E-4C9D-A5AB-C29F6194D446/inu.app/Frameworks/OneSignalExtension.framework/OneSignalExtension
        0x103b6c000 -         0x10410bfff Instabug arm64  <bdaf260ecc1831fb981b74558c13d128> /private/var/containers/Bundle/Application/D4C2D75C-392E-4C9D-A5AB-C29F6194D446/inu.app/Frameworks/Instabug.framework/Instabug
        0x10433c000 -         0x10434ffff OneSignalOutcomes arm64  <f597e9409e003eed98c092f5f5d45878> /private/var/containers/Bundle/Application/D4C2D75C-392E-4C9D-A5AB-C29F6194D446/inu.app/Frameworks/OneSignalOutcomes.framework/OneSignalOutcomes
        0x10436c000 -         0x1046a3fff Veriff arm64  <9651bf036b5530629f2089f76e18ceb6> /private/var/containers/Bundle/Application/D4C2D75C-392E-4C9D-A5AB-C29F6194D446/inu.app/Frameworks/Veriff.framework/Veriff
        0x104e8c000 -         0x105087fff hermes arm64  <58a2b46fbc4e34ae82ceef76dfdea9a8> /private/var/containers/Bundle/Application/D4C2D75C-392E-4C9D-A5AB-C29F6194D446/inu.app/Frameworks/hermes.framework/hermes
        0x1083cc000 -         0x1083d7fff libobjc-trampolines.dylib arm64e  <4aba9420e4d03c989d62c653b259eab4> /private/preboot/Cryptexes/OS/usr/lib/libobjc-trampolines.dylib
        0x193b14000 -         0x193b64ccf libobjc.A.dylib arm64e  <a6a17b3c335130adaf2815a71b78f050> /usr/lib/libobjc.A.dylib
        0x1951a1000 -         0x195ed1fff Foundation arm64e  <e2f95328659e3c0197f752b5b3bb7aa5> /System/Library/Frameworks/Foundation.framework/Foundation
        0x19659d000 -         0x196ae0fff CoreFoundation arm64e  <0013a8b125243534b5ba681aaf18c798> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
        0x198dc0000 -         0x19acd8fff UIKitCore arm64e  <8cc54497f7ec3903ae5aa274047c0cf1> /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
        0x19e35b000 -         0x19e3a0fff libdispatch.dylib arm64e  <c05e486d81f2367e9ce1e14573c4c268> /usr/lib/system/libdispatch.dylib
        0x19e3a1000 -         0x19e420ffb libsystem_c.dylib arm64e  <400d888f854833fc802ff29678681197> /usr/lib/system/libsystem_c.dylib
        0x19e59d000 -         0x19e929fff CoreData arm64e  <59a0a96319ae3600bfefb20330e50355> /System/Library/Frameworks/CoreData.framework/CoreData
        0x1a6bcc000 -         0x1a6c07ff7 libsystem_malloc.dylib arm64e  <fb709ae1a2c53c81a7d05f66cdedda9a> /usr/lib/system/libsystem_malloc.dylib
        0x1a6e3e000 -         0x1a6ecbffb libc++.1.dylib arm64e  <09bdee26e6c335458cc96f215deafb43> /usr/lib/libc++.1.dylib
        0x1bc892000 -         0x1bc915137 dyld arm64e  <a770ff8c8fb93e0385fe7f26db36812b> /usr/lib/dyld
        0x1c4727000 -         0x1c48a7ff3 libsqlite3.dylib arm64e  <d611d255d4503346bfdd4ecdaa4703a8> /usr/lib/libsqlite3.dylib
        0x1e38d4000 -         0x1e38dcfff GraphicsServices arm64e  <3eca7962867b3029adc8bbe100f85ba5> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
        0x1e7cf7000 -         0x1e7d30fe3 libsystem_kernel.dylib arm64e  <881fe934759c3089b98660344cb843e3> /usr/lib/system/libsystem_kernel.dylib
        0x221250000 -         0x22126afff libc++abi.dylib arm64e  <93fe31d773fb338eb696211de65fd7ed> /usr/lib/libc++abi.dylib
        0x221335000 -         0x221341ff3 libsystem_pthread.dylib arm64e  <6f6e49251fb43a0b99d26bd8b7b1a148> /usr/lib/system/libsystem_pthread.dylib
EOF