ios 6.1.4 uiactivitycontroller crashed in UIRemoteViewControllerConnectionRequest _sendServiceViewControllerRequest] + 202 - uiactivityviewcontroller

The crash happens in UIActivityController, when email option is clicked. This happens only first time launch. I stack trace i didnt not find anything related to my application. Entire trace is shown in ios framework. Any one experienced such problem? Please help.
Here is the code
if(NSClassFromString(#"UIActivityViewController")) {
// iOS 6
NSMutableArray *activityItems = [[NSMutableArray alloc] init];
NSMutableArray *applicationActivities = [[NSMutableArray alloc] init];
if ([UIPrintInteractionController isPrintingAvailable])
{
UIViewPrintFormatter *formatter = [self.descriptionWebview viewPrintFormatter];
[activityItems addObject:formatter];
}
if (pdfLink)
{
[activityItems addObject:pdfLink];
PDFActivity *pdfActivity = [[PDFActivity alloc] init];
[applicationActivities addObject:pdfActivity];
}
MailActivityItemSource *mailItemSource = [[MailActivityItemSource alloc] initWithInsightsObject:insightsObj];
[activityItems addObject:mailItemSource];
UIActivityViewController* shareMenu = [[UIActivityViewController alloc] initWithActivityItems:activityItems applicationActivities:applicationActivities];
[shareMenu setCompletionHandler:^(NSString *activityType, BOOL completed) {
[self dismissActivityController];
[self LoadPage];
}];
shareMenu.excludedActivityTypes = #[UIActivityTypePostToFacebook, UIActivityTypePostToWeibo];
// [self presentModalViewController:shareMenu animated:YES];
[self presentViewController:shareMenu animated:YES completion:Nil];
}
else {
Here is the log :
Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Crashed Thread: 5
Last Exception Backtrace:
0 CoreFoundation 0x344383e2 __exceptionPreprocess + 158
1 libobjc.A.dylib 0x3c13395e objc_exception_throw + 26
2 CoreFoundation 0x34437ebc __NSFastEnumerationMutationHandler + 124
3 UIKit 0x365d1210 __54+[_UIAppearance _recordersExcludingSource:withWindow:]_block_invoke_0 + 328
4 CoreFoundation 0x34435752 __NSDictionaryEnumerate + 698
5 UIKit 0x365d10b8 +[_UIAppearance _recordersExcludingSource:withWindow:] + 132
6 UIKit 0x366af408 UIViewServiceCurrentAppearanceSerializedRepresentations + 56
7 UIKit 0x3663d946 -[_UIRemoteViewControllerConnectionRequest _sendServiceViewControllerRequest] + 202
8 UIKit 0x3663d7da __block_global_5 + 258
9 libdispatch.dylib 0x3c55080a _dispatch_barrier_sync_f_invoke + 22
10 UIKit 0x3663d6ce __76-[_UIRemoteViewControllerConnectionRequest _connectToViewControllerOperator]_block_invoke_0 + 90
11 UIKit 0x36646d24 __block_global_0 + 28
12 libdispatch.dylib 0x3c54e586 dispatch_once_f + 42
13 UIKit 0x36646cfe __73-[_UIViewServiceSessionEndpoint connectToDeputyOfType:connectionHandler:]_block_invoke_0 + 86
14 libdispatch.dylib 0x3c54d78e _dispatch_call_block_and_release + 6
15 libdispatch.dylib 0x3c550b36 _dispatch_queue_drain + 138
16 libdispatch.dylib 0x3c54e678 _dispatch_queue_invoke + 40
17 libdispatch.dylib 0x3c55160e _dispatch_root_queue_drain + 206
18 libdispatch.dylib 0x3c5517d4 _dispatch_worker_thread2 + 88
19 libsystem_c.dylib 0x3c5757ec _pthread_wqthread + 356
20 libsystem_c.dylib 0x3c575680 start_wqthread + 4
Thread 0 name: Dispatch queue: com.apple.main-thread
Thread 0:
0 libsystem_kernel.dylib 0x3c616e30 mach_msg_trap + 20
1 libsystem_kernel.dylib 0x3c616fd0 mach_msg + 48
2 CoreFoundation 0x3440d2b6 __CFRunLoopServiceMachPort + 126
3 CoreFoundation 0x3440bfd6 __CFRunLoopRun + 814
4 CoreFoundation 0x3437f238 CFRunLoopRunSpecific + 352
5 CoreFoundation 0x3437f0c4 CFRunLoopRunInMode + 100
6 GraphicsServices 0x37f5e336 GSEventRunModal + 70
7 UIKit 0x3629b2b4 UIApplicationMain + 1116
8 Northern Trust 0x000c1672 main (main.m:43)
9 Northern Trust 0x000c13ec start + 36
Thread 1 name: Dispatch queue: com.apple.libdispatch-manager
Thread 1:
0 libsystem_kernel.dylib 0x3c6175d0 kevent64 + 24
1 libdispatch.dylib 0x3c552d22 _dispatch_mgr_invoke + 806
2 libdispatch.dylib 0x3c54e374 _dispatch_mgr_thread + 32
Thread 2 name: WebThread
Thread 2:
0 libsystem_kernel.dylib 0x3c616e30 mach_msg_trap + 20
1 libsystem_kernel.dylib 0x3c616fd0 mach_msg + 48
2 CoreFoundation 0x3440d2b6 __CFRunLoopServiceMachPort + 126
3 CoreFoundation 0x3440c02c __CFRunLoopRun + 900
4 CoreFoundation 0x3437f238 CFRunLoopRunSpecific + 352
5 CoreFoundation 0x3437f0c4 CFRunLoopRunInMode + 100
6 WebCore 0x3a387390 RunWebThread(void*) + 440
7 libsystem_c.dylib 0x3c5800de _pthread_start + 306
8 libsystem_c.dylib 0x3c57ffa4 thread_start + 4
Thread 3 name: com.apple.NSURLConnectionLoader
Thread 3:
0 libsystem_kernel.dylib 0x3c616e30 mach_msg_trap + 20
1 libsystem_kernel.dylib 0x3c616fd0 mach_msg + 48
2 CoreFoundation 0x3440d2b6 __CFRunLoopServiceMachPort + 126
3 CoreFoundation 0x3440c02c __CFRunLoopRun + 900
4 CoreFoundation 0x3437f238 CFRunLoopRunSpecific + 352
5 CoreFoundation 0x3437f0c4 CFRunLoopRunInMode + 100
6 Foundation 0x34ccc888 +[NSURLConnection(Loader) _resourceLoadLoop:] + 304
7 Foundation 0x34d5022c __NSThread__main__ + 968
8 libsystem_c.dylib 0x3c5800de _pthread_start + 306
9 libsystem_c.dylib 0x3c57ffa4 thread_start + 4
Thread 4:
0 libsystem_kernel.dylib 0x3c627d98 __workq_kernreturn + 8
1 libsystem_c.dylib 0x3c575ad6 _pthread_workq_return + 14
2 libsystem_c.dylib 0x3c5757f2 _pthread_wqthread + 362
3 libsystem_c.dylib 0x3c575680 start_wqthread + 4
Thread 5 name: Dispatch queue: com.apple.uikit._UIRemoteViewControllerCreationRequest com.apple.MailCompositionService ComposeServiceRemoteViewController 0x3cb4d2cc
Thread 5 Crashed:
0 libsystem_kernel.dylib 0x3c627350 __pthread_kill + 8
1 libsystem_c.dylib 0x3c59dfb2 pthread_kill + 54
2 libsystem_c.dylib 0x3c5da366 abort + 90
3 libc++abi.dylib 0x3bb82dda abort_message + 70
4 libc++abi.dylib 0x3bb80094 default_terminate() + 20
5 libobjc.A.dylib 0x3c133a58 _objc_terminate() + 144
6 libc++abi.dylib 0x3bb80118 safe_handler_caller(void (*)()) + 76
7 libc++abi.dylib 0x3bb801b0 std::terminate() + 16
8 libc++abi.dylib 0x3bb8159a __cxa_throw + 118
9 libobjc.A.dylib 0x3c13399e objc_exception_throw + 90
10 CoreFoundation 0x34437ebc __NSFastEnumerationMutationHandler + 124
11 UIKit 0x365d1210 __54+[_UIAppearance _recordersExcludingSource:withWindow:]_block_invoke_0 + 328
12 CoreFoundation 0x34435754 __NSDictionaryEnumerate + 700
13 UIKit 0x365d10b8 +[_UIAppearance _recordersExcludingSource:withWindow:] + 132
14 UIKit 0x366af408 UIViewServiceCurrentAppearanceSerializedRepresentations + 56
15 UIKit 0x3663d946 -[_UIRemoteViewControllerConnectionRequest _sendServiceViewControllerRequest] + 202
16 UIKit 0x3663d7da __block_global_5 + 258
17 libdispatch.dylib 0x3c55080a _dispatch_barrier_sync_f_invoke + 22
18 UIKit 0x3663d6ce __76-[_UIRemoteViewControllerConnectionRequest _connectToViewControllerOperator]_block_invoke_0 + 90
19 UIKit 0x36646d26 __block_global_0 + 30
20 libdispatch.dylib 0x3c54e586 dispatch_once_f + 42
21 UIKit 0x36646cfe __73-[_UIViewServiceSessionEndpoint connectToDeputyOfType:connectionHandler:]_block_invoke_0 + 86
22 libdispatch.dylib 0x3c54d790 _dispatch_call_block_and_release + 8
23 libdispatch.dylib 0x3c550b36 _dispatch_queue_drain + 138
24 libdispatch.dylib 0x3c54e678 _dispatch_queue_invoke + 40
25 libdispatch.dylib 0x3c551610 _dispatch_root_queue_drain + 208
26 libdispatch.dylib 0x3c5517d4 _dispatch_worker_thread2 + 88
27 libsystem_c.dylib 0x3c5757ee _pthread_wqthread + 358
28 libsystem_c.dylib 0x3c575680 start_wqthread + 4
Thread 6 name: com.apple.CFSocket.private
Thread 6:
0 libsystem_kernel.dylib 0x3c627594 __select + 20
1 CoreFoundation 0x34411474 __CFSocketManager + 676
2 libsystem_c.dylib 0x3c5800de _pthread_start + 306
3 libsystem_c.dylib 0x3c57ffa4 thread_start + 4
Thread 7 name: JavaScriptCore::BlockFree
Thread 7:
0 libsystem_kernel.dylib 0x3c62708c __psynch_cvwait + 24
1 libsystem_c.dylib 0x3c578afc _pthread_cond_wait + 644
2 libsystem_c.dylib 0x3c578870 pthread_cond_timedwait + 40
3 JavaScriptCore 0x38354df6 WTF::ThreadCondition::timedWait(WTF::Mutex&, double) + 102
4 JavaScriptCore 0x38467532 JSC::BlockAllocator::blockFreeingThreadMain() + 78
5 JavaScriptCore 0x3847a030 WTF::wtfThreadEntryPoint(void*) + 12
6 libsystem_c.dylib 0x3c5800de _pthread_start + 306
7 libsystem_c.dylib 0x3c57ffa4 thread_start + 4
Thread 8 name: JavaScriptCore::Marking
Thread 8:
0 libsystem_kernel.dylib 0x3c62708c __psynch_cvwait + 24
1 libsystem_c.dylib 0x3c578afc _pthread_cond_wait + 644
2 libsystem_c.dylib 0x3c582cf8 pthread_cond_wait + 36
3 JavaScriptCore 0x383fa6dc JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 140
4 JavaScriptCore 0x383fa620 JSC::MarkStackThreadSharedData::markingThreadMain() + 140
5 JavaScriptCore 0x3847a030 WTF::wtfThreadEntryPoint(void*) + 12
6 libsystem_c.dylib 0x3c5800de _pthread_start + 306
7 libsystem_c.dylib 0x3c57ffa4 thread_start + 4
Thread 9 name: WebCore: CFNetwork Loader
Thread 9:
0 libsystem_kernel.dylib 0x3c616e30 mach_msg_trap + 20
1 libsystem_kernel.dylib 0x3c616fd0 mach_msg + 48
2 CoreFoundation 0x3440d2b6 __CFRunLoopServiceMachPort + 126
3 CoreFoundation 0x3440c02c __CFRunLoopRun + 900
4 CoreFoundation 0x3437f238 CFRunLoopRunSpecific + 352
5 CoreFoundation 0x3437f0c4 CFRunLoopRunInMode + 100
6 WebCore 0x3a421ccc WebCore::runLoaderThread(void*) + 140
7 JavaScriptCore 0x3847a030 WTF::wtfThreadEntryPoint(void*) + 12
8 libsystem_c.dylib 0x3c5800de _pthread_start + 306
9 libsystem_c.dylib 0x3c57ffa4 thread_start + 4
Thread 10:
0 libsystem_kernel.dylib 0x3c627d98 __workq_kernreturn + 8
1 libsystem_c.dylib 0x3c575ad6 _pthread_workq_return + 14
2 libsystem_c.dylib 0x3c5757f2 _pthread_wqthread + 362
3 libsystem_c.dylib 0x3c575680 start_wqthread + 4
Thread 11:
0 libsystem_kernel.dylib 0x3c627d98 __workq_kernreturn + 8
1 libsystem_c.dylib 0x3c575ad6 _pthread_workq_return + 14
2 libsystem_c.dylib 0x3c5757f2 _pthread_wqthread + 362
3 libsystem_c.dylib 0x3c575680 start_wqthread + 4
Thread 12:
0 libsystem_kernel.dylib 0x3c627d98 __workq_kernreturn + 8
1 libsystem_c.dylib 0x3c575ad6 _pthread_workq_return + 14
2 libsystem_c.dylib 0x3c5757f2 _pthread_wqthread + 362
3 libsystem_c.dylib 0x3c575680 start_wqthread + 4
Thread 13:
0 libsystem_kernel.dylib 0x3c627d98 __workq_kernreturn + 8
1 libsystem_c.dylib 0x3c575ad6 _pthread_workq_return + 14
2 libsystem_c.dylib 0x3c5757f2 _pthread_wqthread + 362
3 libsystem_c.dylib 0x3c575680 start_wqthread + 4
Thread 14:
0 libsystem_kernel.dylib 0x3c627d98 __workq_kernreturn + 8
1 libsystem_c.dylib 0x3c575ad6 _pthread_workq_return + 14
2 libsystem_c.dylib 0x3c5757f2 _pthread_wqthread + 362
3 libsystem_c.dylib 0x3c575680 start_wqthread + 4
Thread 5 crashed with ARM Thread State (32-bit):
r0: 0x00000000 r1: 0x00000000 r2: 0x00000000 r3: 0x3e0e9524
r4: 0x00000006 r5: 0x0491b000 r6: 0x21c14ee4 r7: 0x0491a924
r8: 0x21c14ec0 r9: 0x00000888 r10: 0x3c7a2080 r11: 0x00000000
ip: 0x00000148 sp: 0x0491a918 lr: 0x3c59dfb7 pc: 0x3c627350
cpsr: 0x00000010

Related

App crashes in TestFlight but not in Expo

I uploaded my App to App Store Connect and tried to launch it in TestFlight, but it crashes immediately.
I tried to start the app in -.-no-dev --minify mode, and I got this error message in console:
DeprecationWarning: Access to process.binding('http_parser') is deprecated.
Any suggestions to fix this issue? It looks like the app is missing access to http_parser - or some other access-issue?
Crash Log:
Incident Identifier: 388E2322-6BCE-4415-9F4A-CB6C4A079E10
Hardware Model: iPhone11,2
Process: Yukigassen [52962]
Path: /private/var/containers/Bundle/Application/518A710D-C7E7-49E8-88E0- 5F773B8A20C5/Yukigassen.app/Yukigassen
Identifier: com.eakz.Yukigassen
Version: 1.0.0 (2)
AppStoreTools: 14A305
AppVariant: 1:iPhone11,2:15
Beta: YES
Code Type: ARM-64 (Native)
Role: Foreground
Parent Process: launchd [1]
Coalition: com.eakz.Yukigassen [2191]
Date/Time: 2022-09-08 09:37:35.7056 +0200
Launch Time: 2022-09-08 09:37:33.9243 +0200
OS Version: iPhone OS 15.6.1 (19G82)
Release Type: User
Baseband Version: 4.04.02
Report Version: 104
Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note: EXC_CORPSE_NOTIFY
Triggered by Thread: 6
Last Exception Backtrace:
0 CoreFoundation 0x19da19288 __exceptionPreprocess + 220 (NSException.m:200)
1 libobjc.A.dylib 0x1b6749744 objc_exception_throw + 60 (objc-exception.mm:565)
2 Yukigassen 0x1020b2af4 -[EXUpdatesAppController throwException:] + 24 (EXUpdatesAppController.m:422)
3 Yukigassen 0x1020c6a44 -[EXUpdatesErrorRecovery _crash] + 984 (EXUpdatesErrorRecovery.m:222)
4 Yukigassen 0x1020c60f8 -[EXUpdatesErrorRecovery _runNextTask] + 148 (EXUpdatesErrorRecovery.m:0)
5 libdispatch.dylib 0x19d67ee6c _dispatch_call_block_and_release + 32 (init.c:1517)
6 libdispatch.dylib 0x19d680a30 _dispatch_client_callout + 20 (object.m:560)
7 libdispatch.dylib 0x19d688124 _dispatch_lane_serial_drain + 668 (inline_internal.h:2622)
8 libdispatch.dylib 0x19d688c80 _dispatch_lane_invoke + 392 (queue.c:3944)
9 libdispatch.dylib 0x19d693500 _dispatch_workloop_worker_thread + 648 (queue.c:6732)
10 libsystem_pthread.dylib 0x20ebd50bc _pthread_wqthread + 288 (pthread.c:2599)
11 libsystem_pthread.dylib 0x20ebd4e5c start_wqthread + 8 (:-1)
Thread 0 name:
Thread 0:
0 libsystem_kernel.dylib 0x00000001d54b64a0 mach_msg_trap + 8 (:-1)
1 libsystem_kernel.dylib 0x00000001d54b6ae4 mach_msg + 76 (mach_msg.c:119)
2 CoreFoundation 0x000000019d986d30 __CFRunLoopServiceMachPort + 372 (CFRunLoop.c:2646)
3 CoreFoundation 0x000000019d98b1bc __CFRunLoopRun + 1180 (CFRunLoop.c:3000)
4 CoreFoundation 0x000000019d99ebc8 CFRunLoopRunSpecific + 600 (CFRunLoop.c:3268)
5 GraphicsServices 0x00000001b9b0a374 GSEventRunModal + 164 (GSEvent.c:2200)
6 UIKitCore 0x00000001a0312b58 -[UIApplication _run] + 1100 (UIApplication.m:3511)
7 UIKitCore 0x00000001a0094090 UIApplicationMain + 364 (UIApplication.m:5064)
8 Yukigassen 0x0000000102083f64 main + 88 (main.m:7)
9 dyld 0x0000000102621da4 start + 520 (dyldMain.cpp:879)
Thread 1:
0 libsystem_pthread.dylib 0x000000020ebd4e54 start_wqthread + 0 (:-1)
Thread 2:
0 libsystem_pthread.dylib 0x000000020ebd4e54 start_wqthread + 0 (:-1)
Thread 3:
0 libsystem_pthread.dylib 0x000000020ebd4e54 start_wqthread + 0 (:-1)
Thread 4 name:
Thread 4:
0 libsystem_kernel.dylib 0x00000001d54b64a0 mach_msg_trap + 8 (:-1)
1 libsystem_kernel.dylib 0x00000001d54b6ae4 mach_msg + 76 (mach_msg.c:119)
2 CoreFoundation 0x000000019d986d30 __CFRunLoopServiceMachPort + 372 (CFRunLoop.c:2646)
3 CoreFoundation 0x000000019d98b1bc __CFRunLoopRun + 1180 (CFRunLoop.c:3000)
4 CoreFoundation 0x000000019d99ebc8 CFRunLoopRunSpecific + 600 (CFRunLoop.c:3268)
5 Foundation 0x000000019f191444 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 236 (NSRunLoop.m:373)
6 Foundation 0x000000019f1d2e0c -[NSRunLoop(NSRunLoop) runUntilDate:] + 92 (NSRunLoop.m:420)
7 UIKitCore 0x00000001a028ccc4 -[UIEventFetcher threadMain] + 524 (UIEventFetcher.m:1167)
8 Foundation 0x000000019f1e141c __NSThread__start__ + 808 (NSThread.m:972)
9 libsystem_pthread.dylib 0x000000020ebd59ac _pthread_start + 148 (pthread.c:891)
10 libsystem_pthread.dylib 0x000000020ebd4e68 thread_start + 8 (:-1)
Thread 5:
0 libsystem_pthread.dylib 0x000000020ebd4e54 start_wqthread + 0 (:-1)
Thread 6 name:
Thread 6 Crashed:
0 libsystem_kernel.dylib 0x00000001d54bcb38 __pthread_kill + 8 (:-1)
1 libsystem_pthread.dylib 0x000000020ebdb3bc pthread_kill + 268 (pthread.c:1668)
2 libsystem_c.dylib 0x00000001a8b2b524 abort + 168 (abort.c:118)
3 libc++abi.dylib 0x00000001b6854b7c abort_message + 132 (abort_message.cpp:78)
4 libc++abi.dylib 0x00000001b68449c4 demangling_terminate_handler() + 336 (cxa_default_handlers.cpp:71)
5 libobjc.A.dylib 0x00000001b674fc68 _objc_terminate() + 144 (objc-exception.mm:701)
6 libc++abi.dylib 0x00000001b6853f18 std::__terminate(void (*)()) + 20 (cxa_handlers.cpp:59)
7 libc++abi.dylib 0x00000001b6853eb4 std::terminate() + 64 (cxa_handlers.cpp:88)
8 libdispatch.dylib 0x000000019d680a44 _dispatch_client_callout + 40 (object.m:563)
9 libdispatch.dylib 0x000000019d688124 _dispatch_lane_serial_drain + 668 (inline_internal.h:2622)
10 libdispatch.dylib 0x000000019d688c80 _dispatch_lane_invoke + 392 (queue.c:3944)
11 libdispatch.dylib 0x000000019d693500 _dispatch_workloop_worker_thread + 648 (queue.c:6732)
12 libsystem_pthread.dylib 0x000000020ebd50bc _pthread_wqthread + 288 (pthread.c:2599)
13 libsystem_pthread.dylib 0x000000020ebd4e5c start_wqthread + 8 (:-1)
Thread 7 name:
Thread 7:
0 libsystem_kernel.dylib 0x00000001d54b64a0 mach_msg_trap + 8 (:-1)
1 libsystem_kernel.dylib 0x00000001d54b6ae4 mach_msg + 76 (mach_msg.c:119)
2 CoreFoundation 0x000000019d986d30 __CFRunLoopServiceMachPort + 372 (CFRunLoop.c:2646)
3 CoreFoundation 0x000000019d98b1bc __CFRunLoopRun + 1180 (CFRunLoop.c:3000)
4 CoreFoundation 0x000000019d99ebc8 CFRunLoopRunSpecific + 600 (CFRunLoop.c:3268)
5 Yukigassen 0x00000001021a9e5c +[RCTCxxBridge runRunLoop] + 264 (RCTCxxBridge.mm:378)
6 Foundation 0x000000019f1e141c __NSThread__start__ + 808 (NSThread.m:972)
7 libsystem_pthread.dylib 0x000000020ebd59ac _pthread_start + 148 (pthread.c:891)
8 libsystem_pthread.dylib 0x000000020ebd4e68 thread_start + 8 (:-1)
Thread 8 name:
Thread 8:
0 libsystem_kernel.dylib 0x00000001d54b6f24 __psynch_cvwait + 8 (:-1)
1 libsystem_pthread.dylib 0x000000020ebdc298 _pthread_cond_wait + 1236 (pthread_cond.c:636)
2 JavaScriptCore 0x00000001a8cce0b8 scavenger_thread_main + 1088 (pas_scavenger.c:135)
3 libsystem_pthread.dylib 0x000000020ebd59ac _pthread_start + 148 (pthread.c:891)
4 libsystem_pthread.dylib 0x000000020ebd4e68 thread_start + 8 (:-1)
Thread 9 name:
Thread 9:
0 libsystem_kernel.dylib 0x00000001d54b6f24 __psynch_cvwait + 8 (:-1)
1 libsystem_pthread.dylib 0x000000020ebdc298 _pthread_cond_wait + 1236 (pthread_cond.c:636)
2 JavaScriptCore 0x00000001a8c2cc20 WTF::ParkingLot::parkConditionallyImpl(void const*, WTF::ScopedLambda<bool ()> const&, WTF::ScopedLambda<void ()> const&, WTF::TimeWithDynamicClockType const&) + 1844 (ThreadingPOSIX.cpp:622)
3 JavaScriptCore 0x00000001a8bf1c18 bool WTF::Condition::waitUntilUnchecked<WTF::Lock>(WTF::Lock&, WTF::TimeWithDynamicClockType const&) + 308 (ParkingLot.h:82)
4 JavaScriptCore 0x00000001a8bf20a0 WTF::Detail::CallableWrapper<WTF::AutomaticThread::start(WTF::AbstractLocker const&)::$_0, void>::call() + 260 (Condition.h:77)
5 JavaScriptCore 0x00000001a8c4ddc4 WTF::Thread::entryPoint(WTF::Thread::NewThreadContext*) + 352 (Function.h:82)
6 JavaScriptCore 0x00000001a8c500d0 WTF::wtfThreadEntryPoint(void*) + 16 (ThreadingPOSIX.cpp:242)
7 libsystem_pthread.dylib 0x000000020ebd59ac _pthread_start + 148 (pthread.c:891)
8 libsystem_pthread.dylib 0x000000020ebd4e68 thread_start + 8 (:-1)
Thread 10 name:
Thread 10:
0 libsystem_kernel.dylib 0x00000001d54b6f24 __psynch_cvwait + 8 (:-1)
1 libsystem_pthread.dylib 0x000000020ebdc298 _pthread_cond_wait + 1236 (pthread_cond.c:636)
2 JavaScriptCore 0x00000001a8c2cc20 WTF::ParkingLot::parkConditionallyImpl(void const*, WTF::ScopedLambda<bool ()> const&, WTF::ScopedLambda<void ()> const&, WTF::TimeWithDynamicClockType const&) + 1844 (ThreadingPOSIX.cpp:622)
3 JavaScriptCore 0x00000001a8bf1c18 bool WTF::Condition::waitUntilUnchecked<WTF::Lock>(WTF::Lock&, WTF::TimeWithDynamicClockType const&) + 308 (ParkingLot.h:82)
4 JavaScriptCore 0x00000001a8bf20a0 WTF::Detail::CallableWrapper<WTF::AutomaticThread::start(WTF::AbstractLocker const&)::$_0, void>::call() + 260 (Condition.h:77)
5 JavaScriptCore 0x00000001a8c4ddc4 WTF::Thread::entryPoint(WTF::Thread::NewThreadContext*) + 352 (Function.h:82)
6 JavaScriptCore 0x00000001a8c500d0 WTF::wtfThreadEntryPoint(void*) + 16 (ThreadingPOSIX.cpp:242)
7 libsystem_pthread.dylib 0x000000020ebd59ac _pthread_start + 148 (pthread.c:891)
8 libsystem_pthread.dylib 0x000000020ebd4e68 thread_start + 8 (:-1)
Thread 11 name:
Thread 11:
0 libsystem_kernel.dylib 0x00000001d54b6f24 __psynch_cvwait + 8 (:-1)
1 libsystem_pthread.dylib 0x000000020ebdc298 _pthread_cond_wait + 1236 (pthread_cond.c:636)
2 JavaScriptCore 0x00000001a8c2cc20 WTF::ParkingLot::parkConditionallyImpl(void const*, WTF::ScopedLambda<bool ()> const&, WTF::ScopedLambda<void ()> const&, WTF::TimeWithDynamicClockType const&) + 1844 (ThreadingPOSIX.cpp:622)
3 JavaScriptCore 0x00000001a8bf1c18 bool WTF::Condition::waitUntilUnchecked<WTF::Lock>(WTF::Lock&, WTF::TimeWithDynamicClockType const&) + 308 (ParkingLot.h:82)
4 JavaScriptCore 0x00000001a8bf20a0 WTF::Detail::CallableWrapper<WTF::AutomaticThread::start(WTF::AbstractLocker const&)::$_0, void>::call() + 260 (Condition.h:77)
5 JavaScriptCore 0x00000001a8c4ddc4 WTF::Thread::entryPoint(WTF::Thread::NewThreadContext*) + 352 (Function.h:82)
6 JavaScriptCore 0x00000001a8c500d0 WTF::wtfThreadEntryPoint(void*) + 16 (ThreadingPOSIX.cpp:242)
7 libsystem_pthread.dylib 0x000000020ebd59ac _pthread_start + 148 (pthread.c:891)
8 libsystem_pthread.dylib 0x000000020ebd4e68 thread_start + 8 (:-1)
Thread 12 name:
Thread 12:
0 libsystem_kernel.dylib 0x00000001d54b6f24 __psynch_cvwait + 8 (:-1)
1 libsystem_pthread.dylib 0x000000020ebdc298 _pthread_cond_wait + 1236 (pthread_cond.c:636)
2 JavaScriptCore 0x00000001a8c2cc20 WTF::ParkingLot::parkConditionallyImpl(void const*, WTF::ScopedLambda<bool ()> const&, WTF::ScopedLambda<void ()> const&, WTF::TimeWithDynamicClockType const&) + 1844 (ThreadingPOSIX.cpp:622)
3 JavaScriptCore 0x00000001a8bf1c18 bool WTF::Condition::waitUntilUnchecked<WTF::Lock>(WTF::Lock&, WTF::TimeWithDynamicClockType const&) + 308 (ParkingLot.h:82)
4 JavaScriptCore 0x00000001a8bf20a0 WTF::Detail::CallableWrapper<WTF::AutomaticThread::start(WTF::AbstractLocker const&)::$_0, void>::call() + 260 (Condition.h:77)
5 JavaScriptCore 0x00000001a8c4ddc4 WTF::Thread::entryPoint(WTF::Thread::NewThreadContext*) + 352 (Function.h:82)
6 JavaScriptCore 0x00000001a8c500d0 WTF::wtfThreadEntryPoint(void*) + 16 (ThreadingPOSIX.cpp:242)
7 libsystem_pthread.dylib 0x000000020ebd59ac _pthread_start + 148 (pthread.c:891)
8 libsystem_pthread.dylib 0x000000020ebd4e68 thread_start + 8 (:-1)
Thread 13 name:
Thread 13:
0 libsystem_kernel.dylib 0x00000001d54b6f24 __psynch_cvwait + 8 (:-1)
1 libsystem_pthread.dylib 0x000000020ebdc298 _pthread_cond_wait + 1236 (pthread_cond.c:636)
2 JavaScriptCore 0x00000001a8c2cc20 WTF::ParkingLot::parkConditionallyImpl(void const*, WTF::ScopedLambda<bool ()> const&, WTF::ScopedLambda<void ()> const&, WTF::TimeWithDynamicClockType const&) + 1844 (ThreadingPOSIX.cpp:622)
3 JavaScriptCore 0x00000001a8bf1c18 bool WTF::Condition::waitUntilUnchecked<WTF::Lock>(WTF::Lock&, WTF::TimeWithDynamicClockType const&) + 308 (ParkingLot.h:82)
4 JavaScriptCore 0x00000001a8bf20a0 WTF::Detail::CallableWrapper<WTF::AutomaticThread::start(WTF::AbstractLocker const&)::$_0, void>::call() + 260 (Condition.h:77)
5 JavaScriptCore 0x00000001a8c4ddc4 WTF::Thread::entryPoint(WTF::Thread::NewThreadContext*) + 352 (Function.h:82)
6 JavaScriptCore 0x00000001a8c500d0 WTF::wtfThreadEntryPoint(void*) + 16 (ThreadingPOSIX.cpp:242)
7 libsystem_pthread.dylib 0x000000020ebd59ac _pthread_start + 148 (pthread.c:891)
8 libsystem_pthread.dylib 0x000000020ebd4e68 thread_start + 8 (:-1)
Thread 14 name:
Thread 14:
0 libsystem_kernel.dylib 0x00000001d54b6f24 __psynch_cvwait + 8 (:-1)
1 libsystem_pthread.dylib 0x000000020ebdc298 _pthread_cond_wait + 1236 (pthread_cond.c:636)
2 JavaScriptCore 0x00000001a8c2cc20 WTF::ParkingLot::parkConditionallyImpl(void const*, WTF::ScopedLambda<bool ()> const&, WTF::ScopedLambda<void ()> const&, WTF::TimeWithDynamicClockType const&) + 1844 (ThreadingPOSIX.cpp:622)
3 JavaScriptCore 0x00000001a8bf1c18 bool WTF::Condition::waitUntilUnchecked<WTF::Lock>(WTF::Lock&, WTF::TimeWithDynamicClockType const&) + 308 (ParkingLot.h:82)
4 JavaScriptCore 0x00000001a8bf20a0 WTF::Detail::CallableWrapper<WTF::AutomaticThread::start(WTF::AbstractLocker const&)::$_0, void>::call() + 260 (Condition.h:77)
5 JavaScriptCore 0x00000001a8c4ddc4 WTF::Thread::entryPoint(WTF::Thread::NewThreadContext*) + 352 (Function.h:82)
6 JavaScriptCore 0x00000001a8c500d0 WTF::wtfThreadEntryPoint(void*) + 16 (ThreadingPOSIX.cpp:242)
7 libsystem_pthread.dylib 0x000000020ebd59ac _pthread_start + 148 (pthread.c:891)
8 libsystem_pthread.dylib 0x000000020ebd4e68 thread_start + 8 (:-1)
Thread 6 crashed with ARM Thread State (64-bit):
x0: 0x0000000000000000 x1: 0x0000000000000000 x2: 0x0000000000000000 x3: 0x0000000000000000
x4: 0x00000001b68580f5 x5: 0x000000016e0c6430 x6: 0x000000000000006e x7: 0x0000000000000b00
x8: 0xce04e43fe3e13e6c x9: 0xce04e43e8ded4e6c x10: 0x0000000000000200 x11: 0x000000000000000b
x12: 0x000000000000000b x13: 0x000000019dd56a9f x14: 0x00000001b685811b x15: 0x0000000000000000
x16: 0x0000000000000148 x17: 0x000000016e0c7000 x18: 0x0000000000000000 x19: 0x0000000000000006
x20: 0x0000000000002e03 x21: 0x000000016e0c70e0 x22: 0x0000000000000000 x23: 0x000000016e0c70e0
x24: 0x0000000000000000 x25: 0x000000028391f668 x26: 0x0000000000000114 x27: 0x0000000000000000
x28: 0x000000028020cd00 fp: 0x000000016e0c63a0 lr: 0x000000020ebdb3bc
sp: 0x000000016e0c6380 pc: 0x00000001d54bcb38 cpsr: 0x40000000
esr: 0x56000080 Address size fault
Binary Images:
0x10207c000 - 0x102373fff Yukigassen arm64 <2eb0689581ac3d53860046ace589224a> /private/var/containers/Bundle/Application/518A710D-C7E7-49E8-88E0- 5F773B8A20C5/Yukigassen.app/Yukigassen
0x102608000 - 0x10265ffff dyld arm64e <66e1fb2668f8379ba052eb8b8291b5e1> /usr/lib/dyld
0x19d67d000 - 0x19d6c2fff libdispatch.dylib arm64e <e3ea4f635d11342aaf199f58dbc8e259> /usr/lib/system/libdispatch.dylib
0x19d980000 - 0x19ddd5fff CoreFoundation arm64e <6b22dd8135853be6bc77ba19810ec0f2> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
0x19f178000 - 0x19f482fff Foundation arm64e <ee1abaf23d7137fb906715aa79528619> /System/Library/Frameworks/Foundation.framework/Foundation
0x19fdfe000 - 0x1a169bfff UIKitCore arm64e <137a95aada6d332cbc01e13bb9b6e317> /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
0x1a8b0b000 - 0x1a8b8afff libsystem_c.dylib arm64e <86a1a24ace353769ba6960f28353281e> /usr/lib/system/libsystem_c.dylib
0x1a8be3000 - 0x1aa067fff JavaScriptCore arm64e <e76b377fc862395a9439d12b09a59e07> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
0x1b6733000 - 0x1b676ffff libobjc.A.dylib arm64e <f6368be9109b3405b282624040529afd> /usr/lib/libobjc.A.dylib
0x1b6843000 - 0x1b685afff libc++abi.dylib arm64e <d00067b20a7a3cb9b4d407b160da261b> /usr/lib/libc++abi.dylib
0x1b9b09000 - 0x1b9b11fff GraphicsServices arm64e <a094e7b51d4037c5902756d86988ec4b> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
0x1d54b5000 - 0x1d54eafff libsystem_kernel.dylib arm64e <1fb39303587b320eaeb8e51a54c8a4a9> /usr/lib/system/libsystem_kernel.dylib
0x20ebd4000 - 0x20ebdffff libsystem_pthread.dylib arm64e <adc41700002e3a2bb4a1eb5fbf575770> /usr/lib/system/libsystem_pthread.dylib
EOF
Try this:
yarn remove #prisma/cli
yarn add prisma --dev
yarn upgrade #prisma/client

React Native crash RCTImage RCTBlurredImageWithRadius

My iOS App is getting crash developed using React Native. Below is the stack trace of crash.
Crashed: com.apple.root.default-qos
0 libsystem_kernel.dylib 0x7b78 __pthread_kill + 8
1 libsystem_pthread.dylib 0x73bc pthread_kill + 268
2 libsystem_c.dylib 0x2051c abort + 168
3 RCTImage 0x5d44 RCTBlurredImageWithRadius + 914
4 RCTImage 0x145d4 __68-[RCTImageView imageLoaderLoadedImage:error:forImageSource:partial:]_block_invoke.109 + 44
5 libdispatch.dylib 0x1e68 _dispatch_call_block_and_release + 32
6 libdispatch.dylib 0x3a2c _dispatch_client_callout + 20
7 libdispatch.dylib 0x6b44 _dispatch_queue_override_invoke + 784
8 libdispatch.dylib 0x15164 _dispatch_root_queue_drain + 396
9 libdispatch.dylib 0x1596c _dispatch_worker_thread2 + 164
10 libsystem_pthread.dylib 0x1080 _pthread_wqthread + 228
11 libsystem_pthread.dylib 0xe5c start_wqthread + 8
Any idea what is the reason for this issue.

Springboard crash when app is restored from push notification from GameCenter

I'm developing a turn based game using GameCenter and constantly recieving a SpringBoard crash below. Using ARC. Iphone 4 on ios 6.0.1
Please help to understand the reason, i've been fighting with it for about two weeks.
What was found already:
a huge leak in AVFoundation framework, replaced AVAudioPlayer with AudioToolbox calls, but you probably all know about it, crash became more rare case, so i suppose it's actually memory issue but don't know where to dig further
found a leak in [GKTurnBasedMatch loadMatchesWithCompletionHandler:^(NSArray *theMatches, NSError *error) {}] call, reproduced only on ios6, not on ios5, can provide a sample code, can't do anything concerning that until apple fixes it
more apps in background - more chances to get the crash
allocation instruments doesn't show any significant growth of memory usage, small increment but that is loadMatchesWithCompletionHandler
Zombies enabled - no help at all, instruments stops at where spring board is crashed
I have never seen the crash on wife's iphone 4s
looks similar to iOS 5.0.1: SpringBoard crashed after touching the push notification banner
Thank you in advance.
Console log:
Jan 28 13:05:29 Valentyn-Kovalskyys-iPhone4 ReportCrash[4481] <Notice>: Formulating crash report for process SpringBoard[3751]
Jan 28 13:05:29 Valentyn-Kovalskyys-iPhone4 backboardd[52] <Warning>: System app "com.apple.SpringBoard" has died. Spawning again...
Jan 28 13:05:29 Valentyn-Kovalskyys-iPhone4 com.apple.launchd[1] (com.apple.SpringBoard[3751]) <Warning>: (com.apple.SpringBoard) Job appears to have crashed: Segmentation fault: 11
Crash:
Incident Identifier: 67764776-21CD-41EA-B753-A83330CF375B
CrashReporter Key: 669f16a9b5f96366bba1fa191fa248f52ac432b5
Hardware Model: iPhone3,1
Process: SpringBoard [3751]
Path: /System/Library/CoreServices/SpringBoard.app/SpringBoard
Identifier: SpringBoard
Version: ??? (???)
Code Type: ARM (Native)
Parent Process: launchd [1]
Date/Time: 2013-01-28 13:05:27.632 +0200
OS Version: iOS 6.0.1 (10A523)
Report Version: 104
Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x00000008
Crashed Thread: 0
Thread 0 name: Dispatch queue: com.apple.main-thread
Thread 0 Crashed:
0 libobjc.A.dylib 0x3337f5b0 objc_msgSend + 16
1 BackBoardServices 0x39a29b50 -[BKSAccelerometer _orientationDidChange] + 84
2 Foundation 0x340b08e8 __NSThreadPerformPerform + 456
3 CoreFoundation 0x3249b680 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 12
4 CoreFoundation 0x3249aee4 __CFRunLoopDoSources0 + 208
5 CoreFoundation 0x32499cb2 __CFRunLoopRun + 642
6 CoreFoundation 0x3240ceb8 CFRunLoopRunSpecific + 352
7 CoreFoundation 0x3240cd44 CFRunLoopRunInMode + 100
8 GraphicsServices 0x3a20a2e6 GSEventRunModal + 70
9 UIKit 0x39cc82f4 UIApplicationMain + 1116
10 SpringBoard 0x0000489a 0x1000 + 14490
11 libdyld.dylib 0x35f1cb1c start + 0
Thread 1 name: Dispatch queue: com.apple.libdispatch-manager
Thread 1:
0 libsystem_kernel.dylib 0x316a4648 kevent64 + 24
1 libdispatch.dylib 0x34ac54ec _dispatch_mgr_invoke + 792
2 libdispatch.dylib 0x34ab7df4 _dispatch_mgr_thread$VARIANT$up + 32
Thread 2 name: WebThread
Thread 2:
0 libsystem_kernel.dylib 0x316a3eb4 mach_msg_trap + 20
1 libsystem_kernel.dylib 0x316a4048 mach_msg + 36
2 CoreFoundation 0x3249b040 __CFRunLoopServiceMachPort + 124
3 CoreFoundation 0x32499d9e __CFRunLoopRun + 878
4 CoreFoundation 0x3240ceb8 CFRunLoopRunSpecific + 352
5 CoreFoundation 0x3240cd44 CFRunLoopRunInMode + 100
6 WebCore 0x36768a40 RunWebThread(void*) + 440
7 libsystem_c.dylib 0x34aff30e _pthread_start + 306
8 libsystem_c.dylib 0x34aff1d4 thread_start + 4
Thread 3:
0 libsystem_kernel.dylib 0x316a3eb4 mach_msg_trap + 20
1 libsystem_kernel.dylib 0x316a4048 mach_msg + 36
2 CoreFoundation 0x3249b040 __CFRunLoopServiceMachPort + 124
3 CoreFoundation 0x32499d9e __CFRunLoopRun + 878
4 CoreFoundation 0x3240ceb8 CFRunLoopRunSpecific + 352
5 CoreFoundation 0x3240cd44 CFRunLoopRunInMode + 100
6 Foundation 0x3400378a -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 250
7 Foundation 0x340a7058 -[NSRunLoop(NSRunLoop) run] + 76
8 UIKit 0x39f99f66 -[UIStatusBarServerThread main] + 678
9 Foundation 0x340b0678 __NSThread__main__ + 968
10 libsystem_c.dylib 0x34aff30e _pthread_start + 306
11 libsystem_c.dylib 0x34aff1d4 thread_start + 4
Thread 4:
0 libsystem_kernel.dylib 0x316a3eb4 mach_msg_trap + 20
1 libsystem_kernel.dylib 0x316a4048 mach_msg + 36
2 CoreFoundation 0x3249b040 __CFRunLoopServiceMachPort + 124
3 CoreFoundation 0x32499d9e __CFRunLoopRun + 878
4 CoreFoundation 0x3240ceb8 CFRunLoopRunSpecific + 352
5 CoreFoundation 0x3240cd44 CFRunLoopRunInMode + 100
6 SpringBoard 0x00065aa0 0x1000 + 412320
7 libsystem_c.dylib 0x34aff30e _pthread_start + 306
8 libsystem_c.dylib 0x34aff1d4 thread_start + 4
Thread 5 name: com.apple.coremedia.player.async
Thread 5:
0 libsystem_kernel.dylib 0x316b408c __psynch_cvwait + 24
1 libsystem_c.dylib 0x34af7d2a _pthread_cond_wait + 642
2 libsystem_c.dylib 0x34b01f14 pthread_cond_wait + 36
3 CoreMedia 0x388139a4 FigSemaphoreWaitRelative + 256
4 MediaToolbox 0x34fb0356 fpa_AsyncMovieControlThread + 22
5 CoreMedia 0x38831988 figThreadMain + 192
6 libsystem_c.dylib 0x34aff30e _pthread_start + 306
7 libsystem_c.dylib 0x34aff1d4 thread_start + 4
Thread 6:
0 libsystem_kernel.dylib 0x316a3eb4 mach_msg_trap + 20
1 libsystem_kernel.dylib 0x316a4048 mach_msg + 36
2 CoreFoundation 0x3249b040 __CFRunLoopServiceMachPort + 124
3 CoreFoundation 0x32499d9e __CFRunLoopRun + 878
4 CoreFoundation 0x3240ceb8 CFRunLoopRunSpecific + 352
5 CoreFoundation 0x3240cd44 CFRunLoopRunInMode + 100
6 SpringBoard 0x000664dc 0x1000 + 414940
7 libsystem_c.dylib 0x34aff30e _pthread_start + 306
8 libsystem_c.dylib 0x34aff1d4 thread_start + 4
Thread 7 name: com.apple.springboard.icongeneration
Thread 7:
0 libsystem_kernel.dylib 0x316a3eb4 mach_msg_trap + 20
1 libsystem_kernel.dylib 0x316a4048 mach_msg + 36
2 CoreFoundation 0x3249b040 __CFRunLoopServiceMachPort + 124
3 CoreFoundation 0x32499d9e __CFRunLoopRun + 878
4 CoreFoundation 0x3240ceb8 CFRunLoopRunSpecific + 352
5 CoreFoundation 0x3240cd44 CFRunLoopRunInMode + 100
6 SpringBoard 0x000665fc 0x1000 + 415228
7 libsystem_c.dylib 0x34aff30e _pthread_start + 306
8 libsystem_c.dylib 0x34aff1d4 thread_start + 4
Thread 8 name: com.apple.NSURLConnectionLoader
Thread 8:
0 libsystem_kernel.dylib 0x316a3eb4 mach_msg_trap + 20
1 libsystem_kernel.dylib 0x316a4048 mach_msg + 36
2 CoreFoundation 0x3249b040 __CFRunLoopServiceMachPort + 124
3 CoreFoundation 0x32499d9e __CFRunLoopRun + 878
4 CoreFoundation 0x3240ceb8 CFRunLoopRunSpecific + 352
5 CoreFoundation 0x3240cd44 CFRunLoopRunInMode + 100
6 Foundation 0x3402cbc8 +[NSURLConnection(Loader) _resourceLoadLoop:] + 304
7 Foundation 0x340b0678 __NSThread__main__ + 968
8 libsystem_c.dylib 0x34aff30e _pthread_start + 306
9 libsystem_c.dylib 0x34aff1d4 thread_start + 4
Thread 9 name: WiFiManager callback thread
Thread 9:
0 libsystem_kernel.dylib 0x316a3eb4 mach_msg_trap + 20
1 libsystem_kernel.dylib 0x316a4048 mach_msg + 36
2 CoreFoundation 0x3249b040 __CFRunLoopServiceMachPort + 124
3 CoreFoundation 0x32499d9e __CFRunLoopRun + 878
4 CoreFoundation 0x3240ceb8 CFRunLoopRunSpecific + 352
5 CoreFoundation 0x3240cd44 CFRunLoopRunInMode + 100
6 Foundation 0x3400378a -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 250
7 Foundation 0x340a7058 -[NSRunLoop(NSRunLoop) run] + 76
8 Foundation 0x340b0678 __NSThread__main__ + 968
9 libsystem_c.dylib 0x34aff30e _pthread_start + 306
10 libsystem_c.dylib 0x34aff1d4 thread_start + 4
Thread 10:
0 libsystem_kernel.dylib 0x316a3eb4 mach_msg_trap + 20
1 libsystem_kernel.dylib 0x316a4048 mach_msg + 36
2 CoreFoundation 0x3249b040 __CFRunLoopServiceMachPort + 124
3 CoreFoundation 0x32499d9e __CFRunLoopRun + 878
4 CoreFoundation 0x3240ceb8 CFRunLoopRunSpecific + 352
5 CoreFoundation 0x3246b9b6 CFRunLoopRun + 94
6 IMDPersistence 0x335d406e 0x335d3000 + 4206
7 Foundation 0x340b0678 __NSThread__main__ + 968
8 libsystem_c.dylib 0x34aff30e _pthread_start + 306
9 libsystem_c.dylib 0x34aff1d4 thread_start + 4
Thread 11 name: com.apple.coremedia.player.async
Thread 11:
0 libsystem_kernel.dylib 0x316b408c __psynch_cvwait + 24
1 libsystem_c.dylib 0x34af7d2a _pthread_cond_wait + 642
2 libsystem_c.dylib 0x34b01f14 pthread_cond_wait + 36
3 CoreMedia 0x388139a4 FigSemaphoreWaitRelative + 256
4 MediaToolbox 0x34fb0356 fpa_AsyncMovieControlThread + 22
5 CoreMedia 0x38831988 figThreadMain + 192
6 libsystem_c.dylib 0x34aff30e _pthread_start + 306
7 libsystem_c.dylib 0x34aff1d4 thread_start + 4
Thread 12 name: com.apple.coremedia.player.remote
Thread 12:
0 libsystem_kernel.dylib 0x316a3eb4 mach_msg_trap + 20
1 libsystem_kernel.dylib 0x316a4048 mach_msg + 36
2 MediaToolbox 0x34fb65ac FigExpressNotificationThread + 96
3 CoreMedia 0x38831988 figThreadMain + 192
4 libsystem_c.dylib 0x34aff30e _pthread_start + 306
5 libsystem_c.dylib 0x34aff1d4 thread_start + 4
Thread 13 name: com.apple.CFSocket.private
Thread 13:
0 libsystem_kernel.dylib 0x316b4594 __select + 20
1 CoreFoundation 0x3249f1f2 __CFSocketManager + 674
2 libsystem_c.dylib 0x34aff30e _pthread_start + 306
3 libsystem_c.dylib 0x34aff1d4 thread_start + 4
Thread 14 name: Dispatch queue: com.apple.bulletinboard.bbserverqueue
Thread 14:
0 libsystem_kernel.dylib 0x316a3ee0 semaphore_signal_trap + 8
1 libdispatch.dylib 0x34ab7528 _dispatch_thread_semaphore_signal$VARIANT$up + 4
2 CoreFoundation 0x32443040 CFPreferencesAppSynchronize + 308
3 Foundation 0x34028fea -[NSUserDefaults(NSUserDefaults) synchronize] + 18
4 BulletinBoard 0x375cb204 -[BBServer observer:handleResponse:] + 348
5 CoreFoundation 0x324c99c0 __invoking___ + 64
6 CoreFoundation 0x32420fe6 -[NSInvocation invoke] + 282
7 CoreFoundation 0x32420b3e -[NSInvocation invokeWithTarget:] + 46
8 XPCObjects 0x35719ec4 __block_global_0 + 476
9 libdispatch.dylib 0x34ab611c _dispatch_call_block_and_release + 8
10 libdispatch.dylib 0x34ab5996 _dispatch_queue_drain$VARIANT$up + 142
11 libdispatch.dylib 0x34ab5890 _dispatch_queue_invoke$VARIANT$up + 32
12 libdispatch.dylib 0x34ac4212 _dispatch_root_queue_drain + 190
13 libdispatch.dylib 0x34ac43b4 _dispatch_worker_thread2 + 80
14 libsystem_c.dylib 0x34af4a0e _pthread_wqthread + 358
15 libsystem_c.dylib 0x34af48a0 start_wqthread + 4
Thread 15:
0 libsystem_kernel.dylib 0x316b4d98 __workq_kernreturn + 8
1 libsystem_c.dylib 0x34af4cf6 _pthread_workq_return + 14
2 libsystem_c.dylib 0x34af4a12 _pthread_wqthread + 362
3 libsystem_c.dylib 0x34af48a0 start_wqthread + 4
Thread 0 crashed with ARM Thread State (32-bit):
r0: 0x08870fd0 r1: 0x3915fa6c r2: 0x087a32a0 r3: 0x00000005
r4: 0x00000000 r5: 0x3915fa6c r6: 0x08870fd0 r7: 0x2fdfecc8
r8: 0x00003f03 r9: 0x0e457e9b r10: 0x00000000 r11: 0x0036e700
ip: 0x3be2123c sp: 0x2fdfecb4 lr: 0x39a29b55 pc: 0x3337f5b0
cpsr: 0x20080030
It's was a bug in 6.0.1, fixed in 6.1 fortunately!

Xcode 4.5 callStackSymbol not Symbolicated

I am using NSException's callStackSymbol to log the stack trace of my crash and send it to my server.
I am getting this kind of stack trace from my release ipa file and/or the original released app on iTunes.
0 CoreFoundation 0x35d048a7 __exceptionPreprocess + 186
1 libobjc.A.dylib 0x33928259 objc_exception_throw + 32
2 CoreFoundation 0x35c591d7 -[__NSArrayM insertObject:atIndex:] + 186
3 MyApp 0x00125443 _mh_execute_header + 300099
4 Foundation 0x3512a933 __NSFireDelayedPerform + 414
5 CoreFoundation 0x35cd8a33 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 14
6 CoreFoundation 0x35cd8699 __CFRunLoopDoTimer + 364
7 CoreFoundation 0x35cd726f __CFRunLoopRun + 1206
8 CoreFoundation 0x35c5a4a5 CFRunLoopRunSpecific + 300
9 CoreFoundation 0x35c5a36d CFRunLoopRunInMode + 104
10 GraphicsServices 0x339f5439 GSEventRunModal + 136
11 UIKit 0x33432cd5 UIApplicationMain + 1080
12 MyApp 0x00124b07 _mh_execute_header + 297735
13 MyApp 0x000deaf0 _mh_execute_header + 10992
And I'm getting this on debug/release via Simulator (I was getting this kind of stack trace before supporting iOS 6.0):
0 CoreFoundation 0x35d048a7 __exceptionPreprocess + 186
1 libobjc.A.dylib 0x33928259 objc_exception_throw + 32
2 CoreFoundation 0x35c591d7 -[__NSArrayM insertObject:atIndex:] + 186
3 MyApp 0x00125443 [MyApp didAppLoad] + 300099
4 Foundation 0x3512a933 __NSFireDelayedPerform + 414
5 CoreFoundation 0x35cd8a33 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 14
6 CoreFoundation 0x35cd8699 __CFRunLoopDoTimer + 364
7 CoreFoundation 0x35cd726f __CFRunLoopRun + 1206
8 CoreFoundation 0x35c5a4a5 CFRunLoopRunSpecific + 300
9 CoreFoundation 0x35c5a36d CFRunLoopRunInMode + 104
10 GraphicsServices 0x339f5439 GSEventRunModal + 136
11 UIKit 0x33432cd5 UIApplicationMain + 1080
12 MyApp 0x00124b07 [MyApp appLoad] + 297735
13 MyApp 0x000deaf0 [MyApp start] + 10992
My question is, what should I do to make it symbolicated (do not offer me of using symbolicating tools because it was working on the previous releases and supporting iOS 6 using Xcode 4.5, it became like this, and it is not iTunes.crash file).
If there's any chance of getting the reason of the crash from iTunes.crash, can you teach me how to do it? I searched for about 6 hours and I still didn't find any clue.
Thanks in advance!

Upgrading existing app to iOS 6

while compiling/upgrading one of my existing apps to iOS 6 beta 4, it's crashing on device, however with simulator it's working fine.If anyone has tried it before, that will be really helpful.
Here is the crash log:
Incident Identifier: CC4112AC-DB73-489B-A64D-C946B6B25422
CrashReporter Key: ea874c1da9152b46ac359400c82fdc7f548b1778
Hardware Model: iPhone4,1
Process: AppCatalogue [2248]
Path: /var/mobile/Applications/9E3C6AAF-7341-42AF-B1DE-875F3B7A5555/AppCatalogue.app/AppCatalogue
Identifier: AppCatalogue
Version: ??? (???)
Code Type: ARM (Native)
Parent Process: launchd [1]
Date/Time: 2012-08-08 11:03:46.526 -0500
OS Version: iOS 6.0 (10A5376e)
Report Version: 104
Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Crashed Thread: 0
Last Exception Backtrace:
0 CoreFoundation 0x3674d6be 0x3668b000 + 796350
1 libobjc.A.dylib 0x389c697a 0x389be000 + 35194
2 CoreFoundation 0x36751222 0x3668b000 + 811554
3 CoreFoundation 0x3674f94c 0x3668b000 + 805196
4 CoreFoundation 0x366a7464 0x3668b000 + 115812
5 AppCatalogue 0x0000a2aa 0x1000 + 37546
6 AppCatalogue 0x0000aa12 0x1000 + 39442
7 UIKit 0x38167b7c 0x38119000 + 322428
8 UIKit 0x3814c936 0x38119000 + 211254
9 UIKit 0x38163e12 0x38119000 + 306706
10 UIKit 0x3811ff26 0x38119000 + 28454
11 QuartzCore 0x3546de96 0x3546a000 + 16022
12 QuartzCore 0x3546da34 0x3546a000 + 14900
13 QuartzCore 0x3546e970 0x3546a000 + 18800
14 QuartzCore 0x3546e34e 0x3546a000 + 17230
15 QuartzCore 0x3546e15c 0x3546a000 + 16732
16 QuartzCore 0x3546dfbc 0x3546a000 + 16316
17 CoreFoundation 0x36722ae8 0x3668b000 + 621288
18 CoreFoundation 0x36720ddc 0x3668b000 + 613852
19 CoreFoundation 0x36721132 0x3668b000 + 614706
20 CoreFoundation 0x36694398 0x3668b000 + 37784
21 CoreFoundation 0x36694224 0x3668b000 + 37412
22 GraphicsServices 0x35049316 0x35044000 + 21270
23 UIKit 0x381708f4 0x38119000 + 358644
24 AppCatalogue 0x0003052a 0x1000 + 193834
25 AppCatalogue 0x00002e54 0x1000 + 7764
Thanks.
Try to build/run with xCode 4.5 GM. Some troubles was fixed in my case.

Resources