MKStoreKit crash on iOS 7 with SIGTRAP error - ios

I have been over and over this live app crash log and cannot find the problem:
1 CoreFoundation _CFHash + 130
2 CoreFoundation CFBasicHashFindBucket + 724
3 CoreFoundation _CFDictionaryGetValue + 99
4 CoreFoundation -[CFXPreferencesPropertyListSource setValue:forKey:] + 39
5 CoreFoundation _CFXPreferencesSetValue + 139
6 CoreFoundation _CFPreferencesSetAppValue + 45
7 Foundation -[NSUserDefaults(NSUserDefaults) setObject:forKey:] + 61
8 MyApp -[MKStoreManager rememberPurchaseOfProduct:withReceipt:] (MKStoreManager.m:884)
9 MyApp -[MKStoreManager provideContent:forReceipt:hostedContent:] (MKStoreManager.m:848)
10 MyApp -[MKStoreManager restoreTransaction:] (MKStoreManager.m:1004)
11 MyApp -[MKStoreManager paymentQueue:updatedTransactions:] (MKStoreManager.m:911)
12 StoreKit __NotifyObserverAboutChanges + 85
Here is the code that I believe is associated with the crash(es!):
- (void)rememberPurchaseOfProduct:(NSString*) productIdentifier withReceipt:(NSData*) receiptData {
NSDictionary *allConsumables = [[MKStoreManager storeKitItems] objectForKey:#"Consumables"];
if([[allConsumables allKeys] containsObject:productIdentifier])
{
NSDictionary *thisConsumableDict = [allConsumables objectForKey:productIdentifier];
NSInteger quantityPurchased = [[thisConsumableDict objectForKey:#"Count"] integerValue];
NSString* productPurchased = [thisConsumableDict objectForKey:#"Name"];
NSInteger oldCount = [[MKStoreManager numberForKey:productPurchased] integerValue];
NSInteger newCount = oldCount + quantityPurchased;
[MKStoreManager setObject:[NSNumber numberWithInteger:newCount] forKey:productPurchased];
}
else
{
[MKStoreManager setObject:[NSNumber numberWithBool:YES] forKey:productIdentifier];
//set flag in NSUserDefaults as another place we chan check to see if they have purchased the app
//we may not want to check this, however, as an OR, since it can be easily jailbroken
[[NSUserDefaults standardUserDefaults] setBool:TRUE forKey:productIdentifier];
[[NSUserDefaults standardUserDefaults] synchronize];
}
[MKStoreManager setObject:receiptData forKey:[NSString stringWithFormat:#"%#-receipt", productIdentifier]];
}
I have been using this same code for years with no problem. Can anyone please help to point me in the right direction?
UPDATE: posting full crash log below
Incident Identifier: 07EF534E-E37C-4AF3-982A-11D6997A0D5C
CrashReporter Key: CE01293A-021D-4DAD-BFA9-7F24957608B7
Hardware Model: iPhone6,1
Process: MyApp [1590]
Path: /Users/USER/MyApp.app/MyApp
Identifier: com.mysoftware.myapp
Version: 1.3.1
Code Type: ARM
Parent Process: launchd [1]
Date/Time: 2013-11-04T18:31:48Z
OS Version: iPhone OS 7.0.3 (11B511)
Report Version: 104
Exception Type: SIGTRAP
Exception Codes: #0 at 0x2fdd01be
Crashed Thread: 0
Thread 0 Crashed:
0 CoreFoundation 0x2fdd01be _CFHash + 130
1 CoreFoundation 0x2fdccb6c CFBasicHashFindBucket + 724
2 CoreFoundation 0x2fdcc873 _CFDictionaryGetValue + 99
3 CoreFoundation 0x2fe14ab3 -[CFXPreferencesPropertyListSource setValue:forKey:] + 39
4 CoreFoundation 0x2fe14a2f _CFXPreferencesSetValue + 139
5 CoreFoundation 0x2fe14905 _CFPreferencesSetAppValue + 45
6 Foundation 0x307d0a55 -[NSUserDefaults(NSUserDefaults) setObject:forKey:] + 61
7 MyApp 0x00134d59 -[MKStoreManager rememberPurchaseOfProduct:withReceipt:] (MKStoreManager.m:884)
8 MyApp 0x0013496d -[MKStoreManager provideContent:forReceipt:hostedContent:] (MKStoreManager.m:848)
9 MyApp 0x0013538f -[MKStoreManager restoreTransaction:] (MKStoreManager.m:1004)
10 MyApp 0x00134ed5 -[MKStoreManager paymentQueue:updatedTransactions:] (MKStoreManager.m:911)
11 StoreKit 0x325b6e85 __NotifyObserverAboutChanges + 85
12 CoreFoundation 0x2fdd2ea1 _CFArrayApplyFunction + 37
13 StoreKit 0x325b6e21 -[SKPaymentQueue _notifyObserversAboutChanges:sendUpdatedDownloads:] + 129
14 StoreKit 0x325b76f9 -[SKPaymentQueue _processUpdates:trimUnmatched:sendUpdatedDownloads:] + 1017
15 StoreKit 0x325b7dc9 -[SKPaymentQueue _setTransactionsWithReply:] + 129
16 StoreKit 0x325b69bf __38-[SKPaymentQueue _establishConnection]_block_invoke_2 + 63
17 libdispatch.dylib 0x3a6e50c3 _dispatch_call_block_and_release + 11
18 libdispatch.dylib 0x3a6e50af _dispatch_client_callout + 23
19 libdispatch.dylib 0x3a6e79a9 __dispatch_main_queue_callback_4CF + 269
20 CoreFoundation 0x2fe6a5b1 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 9
21 CoreFoundation 0x2fe68e7d __CFRunLoopRun + 1309
22 CoreFoundation 0x2fdd3471 _CFRunLoopRunSpecific + 525
23 CoreFoundation 0x2fdd3253 _CFRunLoopRunInMode + 107
24 GraphicsServices 0x34b072eb _GSEventRunModal + 139
25 UIKit 0x32688845 _UIApplicationMain + 1137
26 MyApp 0x00083fff main (main.m:4)
Thread 1:
0 libsystem_kernel.dylib 0x3a79d838 _kevent64 + 24
1 libdispatch.dylib 0x3a6e6623 _dispatch_mgr_thread + 39
Thread 2:
0 libsystem_kernel.dylib 0x3a79da84 _mach_msg_trap + 20
1 CoreFoundation 0x2fe6a559 __CFRunLoopServiceMachPort + 157
2 CoreFoundation 0x2fe68c79 __CFRunLoopRun + 793
3 CoreFoundation 0x2fdd3471 _CFRunLoopRunSpecific + 525
4 CoreFoundation 0x2fdd3253 _CFRunLoopRunInMode + 107
5 WebCore 0x37d9a0c5 RunWebThread(void*) + 421
6 libsystem_pthread.dylib 0x3a816c5d _pthread_body + 141
7 libsystem_pthread.dylib 0x3a816bcf __pthread_start + 103
Thread 3:
0 libsystem_kernel.dylib 0x3a79da84 _mach_msg_trap + 20
1 CoreFoundation 0x2fe6a559 __CFRunLoopServiceMachPort + 157
2 CoreFoundation 0x2fe68c79 __CFRunLoopRun + 793
3 CoreFoundation 0x2fdd3471 _CFRunLoopRunSpecific + 525
4 CoreFoundation 0x2fe170db _CFRunLoopRun + 99
5 CoreMotion 0x3048b369 _CLSF_thorntonUpdate_6x6 + 57225
6 libsystem_pthread.dylib 0x3a816c5d _pthread_body + 141
7 libsystem_pthread.dylib 0x3a816bcf __pthread_start + 103
Thread 4:
0 libsystem_kernel.dylib 0x3a7b0c7c ___workq_kernreturn + 8
Thread 5:
0 libsystem_kernel.dylib 0x3a7b0c7c ___workq_kernreturn + 8
Thread 6:
0 libsystem_kernel.dylib 0x3a7b0c7c ___workq_kernreturn + 8
Thread 0 crashed with ARM Thread State:
r0: 0x00000000 r1: 0x2fdd013d r2: 0x00000000 r3: 0x00000304
r4: 0x00000000 r5: 0x00000004 r6: 0x00000000 r7: 0x004bb994
r8: 0x1752fd80 r9: 0x176e45a8 r10: 0x2ff063d0 r11: 0x3a9aa5c4
ip: 0x2fdd53c9 sp: 0x004bb98c lr: 0x2fdccb6c pc: 0x2fdd01be
cpsr: 0x60000030
Binary Images:
0x81000 - 0x202fff + MyApp armv7s <fc1bc90151cf30da9de8889a1115ae51> /Users/USER/MyApp.app/MyApp
0x2eb73000 - 0x2eb8efff libJapaneseConverter.dylib armv7s <f248c9d2ab0c3a2c96b4afbb5f30e6f1> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
0x2ed2f000 - 0x2ee30fff AVFoundation armv7s <759b362f09e53f37a2ec82372a95d1de> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
0x2ee31000 - 0x2ee59fff libAVFAudio.dylib armv7s <0925efab4dd338e382aa5b10cdbed33f> /System/Library/Frameworks/AVFoundation.framework/libAVFAudio.dylib
0x2ee5a000 - 0x2ee5afff Accelerate armv7s <9340338f3cdf347abe4a88c2f59b5b12> /System/Library/Frameworks/Accelerate.framework/Accelerate
0x2ee64000 - 0x2f031fff vImage armv7s <479b5c4701833284ab587a1d2fdb5627> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
0x2f032000 - 0x2f114fff libBLAS.dylib armv7s <da4fa367557d3028b02458e2cdf6d84d> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
0x2f115000 - 0x2f3d0fff libLAPACK.dylib armv7s <066ea8372dd23f6d89011f9a4a872d6f> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
0x2f3d1000 - 0x2f43ffff libvDSP.dylib armv7s <a5dcfe68199839b989c7be120c14ccb4> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
0x2f440000 - 0x2f452fff libvMisc.dylib armv7s <ea636bbda5ee33119a4e731aed02fa31> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
0x2f453000 - 0x2f453fff vecLib armv7s <663aefa25bc5367baa72ca144ac26d18> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
0x2f454000 - 0x2f473fff Accounts armv7s <811f7e5dcd353c57af6d6de859848774> /System/Library/Frameworks/Accounts.framework/Accounts
0x2f474000 - 0x2f474fff AdSupport armv7s <fa30d96d0a333568826efd5aad83097a> /System/Library/Frameworks/AdSupport.framework/AdSupport
0x2f475000 - 0x2f4dafff AddressBook armv7s <cc733c2c249e3161a9af19a44aeb1577> /System/Library/Frameworks/AddressBook.framework/AddressBook
0x2f4db000 - 0x2f5ecfff AddressBookUI armv7s <8f681556d73d3ee5b9bfead2a124927c> /System/Library/Frameworks/AddressBookUI.framework/AddressBookUI
0x2f5ed000 - 0x2f5fefff AssetsLibrary armv7s <4c426c7f5e3930f0bd01d3e1f17f0392> /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary
0x2f743000 - 0x2fa5ffff AudioToolbox armv7s <f49f28790aa036c08e5573071a7e2870> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
0x2fa60000 - 0x2fb65fff CFNetwork armv7s <36562cff956f38a09956da9218198ccf> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
0x2fb66000 - 0x2fbc1fff CoreAudio armv7s <34f47ad0c4d530249298888a1217316f> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
0x2fbc2000 - 0x2fbd8fff CoreBluetooth armv7s <0211d5169d0d3838a9cbb9dd5086a312> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
0x2fbd9000 - 0x2fdcafff CoreData armv7s <4ed490c5fd693fefac89d75a47eab553> /System/Library/Frameworks/CoreData.framework/CoreData
0x2fdcb000 - 0x2ff0efff CoreFoundation armv7s <37c6b3b7abca3774bec8fecf79f07013> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
0x2ff0f000 - 0x30033fff CoreGraphics armv7s <e13cbd4115dc3113b875de88b92744f8> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
0x30035000 - 0x30070fff libCGFreetype.A.dylib armv7s <4be02e4373903a7d8295e4e0859326ab>
(too long for SO to post the rest but I can add it in a comment if anyone thinks it could be helpful)

productIdentifier is nil as #rmaddy suggests in the comments. Other developers are reporting this issue on the MKStoreKit Github issues https://github.com/MugunthKumar/MKStoreKit/pull/176
The suggested fix is here: https://github.com/dfabulich/MKStoreKit/commit/4b8adb442f1d7b7a9541feab5e319969369d3f95 by Dan Fabulich (not me).
In MKStoreManager.m -(void) provideContent: (NSString*) productIdentifier add a nil check at the top:
if (!productIdentifier) {
NSLog(#"productIdentifier is nil; Apple bug?");
return;
}

Related

_dispatch_assert_queue_fail crash on iOS 14 [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 2 years ago.
Improve this question
I am getting a crash on our iOS app since iOS 14 hit the market. The same app build on previous versions of iOS have NOT had the crash.
The repro steps are great:
Open a parent view
Open a child view, close the child view
Repeat 3-4 times, ending on the parent view
Wait for a period of time (generally less the 1 minute)
Crash (sometimes)
It appears to be crashing on a background thread. I have looked for everything modifying the UI and cannot find any place we modify the UI in the background thread.
Any help with where to go next would be great.
CrashReporter Key: cc7fbcbcf4da4c29df437fd10511467e7b461720
Hardware Model: iPhone10,3
Process: MyCompany [6775]
Path: /private/var/containers/Bundle/Application/AED62231-5C98-479E-8648-2DE8CCBD1ED4/MyCompany.app/MyCompany
Identifier: com.mycompany.app
Version: 187 (13.1.187)
Code Type: ARM-64 (Native)
Role: Foreground
Parent Process: launchd [1]
Coalition: com.mycompany.app [886]
Date/Time: 2020-12-17 08:59:21.2352 -0600
Launch Time: 2020-12-17 08:46:55.3918 -0600
OS Version: iPhone OS 14.2 (18B92)
Release Type: User
Baseband Version: 6.02.01
Report Version: 104
Exception Type: EXC_BAD_ACCESS (SIGBUS)
Exception Subtype: KERN_PROTECTION_FAILURE at 0x00000001ad4751cc
VM Region Info: 0x1ad4751cc is in 0x1ad474000-0x1ad478000; bytes after start: 4556 bytes before end: 11827
REGION TYPE START - END [ VSIZE] PRT/MAX SHRMOD REGION DETAIL
__TEXT 1ad470000-1ad474000 [ 16K] r-x/r-x SM=COW ...bobjc.A.dylib
---> __TEXT 1ad474000-1ad478000 [ 16K] rw-/rwx SM=PRV ...bobjc.A.dylib
__TEXT 1ad478000-1ad4a6000 [ 184K] r-x/r-x SM=COW ...bobjc.A.dylib
Termination Signal: Bus error: 10
Termination Reason: Namespace SIGNAL, Code 0xa
Terminating Process: exc handler [6775]
Triggered by Thread: 6
Thread 0 name: Dispatch queue: com.apple.main-thread
Thread 0:
0 libBacktraceRecording.dylib 0x000000010170579c 0x101700000 + 22428
1 libBacktraceRecording.dylib 0x0000000101705788 0x101700000 + 22408
2 libdispatch.dylib 0x0000000102500954 0x1024c8000 + 231764
3 libdispatch.dylib 0x00000001024d1a20 0x1024c8000 + 39456
4 JavaScriptCore 0x00000001a35d8c10 WTF::WorkQueue::dispatch(WTF::Function<void + 14765072 ()>&&) + 124
5 WebKit 0x00000001a555c7a0 IPC::Connection::sendMessage+ 186272 (std::__1::unique_ptr<IPC::Encoder, std::__1::default_delete<IPC::Encoder> >, WTF::OptionSet<IPC::SendOption>) + 768
6 WebKit 0x00000001a57dcb20 WebKit::AuxiliaryProcessProxy::sendMessage(std::__1::unique_ptr<IPC::Encoder, std::__1::default_delete<IPC::Encoder> >, WTF::OptionSet<IPC::SendOption>, WTF::Optional<std::__1::pair<WTF::CompletionHandler<void + 2808608 (IPC::Decoder*)>, unsigned long long> >&&, WebKit::AuxiliaryProcessProxy::ShouldStartProcessThrottlerActivity) + 508
7 WebKit 0x00000001a57deae8 WebKit::DrawingAreaProxy::sendMessage(std::__1::unique_ptr<IPC::Encoder, std::__1::default_delete<IPC::Encoder> >, WTF::OptionSet<IPC::SendOption>, WTF::Optional<std::__1::pair<WTF::CompletionHandler<void + 2816744 (IPC::Decoder*)>, unsigned long long> >&&) + 48
8 WebKit 0x00000001a5830b24 WebKit::RemoteLayerTreeDrawingAreaProxy::didRefreshDisplay+ 3152676 () + 200
9 QuartzCore 0x000000019cbf547c CA::Display::DisplayLink::dispatch_items+ 78972 (unsigned long long, unsigned long long, unsigned long long) + 660
10 QuartzCore 0x000000019ccc7268 display_timer_callback+ 938600 (__CFMachPort*, void*, long, void*) + 276
11 CoreFoundation 0x0000000199a22b44 __CFMachPortPerform + 172
12 CoreFoundation 0x0000000199a46410 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 56
13 CoreFoundation 0x0000000199a45824 __CFRunLoopDoSource1 + 588
14 CoreFoundation 0x0000000199a3f9e4 __CFRunLoopRun + 2332
15 CoreFoundation 0x0000000199a3eb90 CFRunLoopRunSpecific + 572
16 GraphicsServices 0x00000001afd61598 GSEventRunModal + 160
17 UIKitCore 0x000000019c328638 -[UIApplication _run] + 1052
18 UIKitCore 0x000000019c32dbb8 UIApplicationMain + 164
19 MyCompany 0x0000000100879dd0 0x100794000 + 941520
20 libdyld.dylib 0x000000019971d588 start + 4
Thread 1 name: com.apple.uikit.eventfetch-thread
Thread 1:
0 libsystem_kernel.dylib 0x00000001c4b6a644 mach_msg_trap + 8
1 libsystem_kernel.dylib 0x00000001c4b69a48 mach_msg + 72
2 CoreFoundation 0x0000000199a450ec __CFRunLoopServiceMachPort + 376
3 CoreFoundation 0x0000000199a3f560 __CFRunLoopRun + 1176
4 CoreFoundation 0x0000000199a3eb90 CFRunLoopRunSpecific + 572
5 Foundation 0x000000019ac5c7f8 -[NSRunLoop+ 30712 (NSRunLoop) runMode:beforeDate:] + 228
6 Foundation 0x000000019ac5c6d8 -[NSRunLoop+ 30424 (NSRunLoop) runUntilDate:] + 88
7 UIKitCore 0x000000019c3d4438 -[UIEventFetcher threadMain] + 504
8 Foundation 0x000000019adb94bc __NSThread__start__ + 848
9 libsystem_pthread.dylib 0x00000001e00d0b3c _pthread_start + 288
10 libsystem_pthread.dylib 0x00000001e00d5880 thread_start + 8
Thread 2 name: com.apple.NSURLConnectionLoader
Thread 2:
0 libsystem_kernel.dylib 0x00000001c4b6a644 mach_msg_trap + 8
1 libsystem_kernel.dylib 0x00000001c4b69a48 mach_msg + 72
2 CoreFoundation 0x0000000199a450ec __CFRunLoopServiceMachPort + 376
3 CoreFoundation 0x0000000199a3f560 __CFRunLoopRun + 1176
4 CoreFoundation 0x0000000199a3eb90 CFRunLoopRunSpecific + 572
5 CFNetwork 0x000000019a2ce720 0x19a09c000 + 2303776
6 Foundation 0x000000019adb94bc __NSThread__start__ + 848
7 libsystem_pthread.dylib 0x00000001e00d0b3c _pthread_start + 288
8 libsystem_pthread.dylib 0x00000001e00d5880 thread_start + 8
Thread 3:
0 libdispatch.dylib 0x00000001024cefdc 0x1024c8000 + 28636
1 libdispatch.dylib 0x00000001024cefd4 0x1024c8000 + 28628
2 libdispatch.dylib 0x00000001024cef64 0x1024c8000 + 28516
3 UIKitCore 0x000000019c7eae5c -[UIImageView _mainQ_beginLoadingIfApplicable] + 72
4 UIKitCore 0x000000019c7e3260 -[UIImageView setHidden:] + 72
5 UIKitCore 0x000000019bcba228 -[UIButton _updateImageView] + 540
6 UIKitCore 0x000000019bcbabc0 -[UIButton layoutSubviews] + 348
7 UIKitCore 0x000000019c833288 -[UIView+ 17003144 (CALayerDelegate) layoutSublayersOfLayer:] + 2468
8 QuartzCore 0x000000019cd36b2c -[CALayer layoutSublayers] + 288
9 QuartzCore 0x000000019cd3cff8 CA::Layer::layout_if_needed+ 1421304 (CA::Transaction*) + 520
10 QuartzCore 0x000000019cd48314 CA::Layer::layout_and_display_if_needed+ 1467156 (CA::Transaction*) + 140
11 QuartzCore 0x000000019cc94570 CA::Context::commit_transaction+ 730480 (CA::Transaction*, double, double*) + 416
12 QuartzCore 0x000000019ccbe6f8 CA::Transaction::commit+ 902904 () + 728
13 QuartzCore 0x000000019ccbef04 CA::Transaction::release_thread+ 904964 (void*) + 228
14 libsystem_pthread.dylib 0x00000001e00d5110 _pthread_tsd_cleanup + 520
15 libsystem_pthread.dylib 0x00000001e00d0b98 _pthread_exit + 80
16 libsystem_pthread.dylib 0x00000001e00d28a0 _pthread_wqthread_legacy_worker_wrap + 0
17 libsystem_pthread.dylib 0x00000001e00d2634 _pthread_wqthread + 416
18 libsystem_pthread.dylib 0x00000001e00d5874 start_wqthread + 8
Thread 4:
0 libsystem_pthread.dylib 0x00000001e00d586c start_wqthread + 0
Thread 5 name: Dispatch queue: com.apple.root.user-initiated-qos
Thread 5:
0 libsystem_kernel.dylib 0x00000001c4b8e290 __ulock_wait + 8
1 libsystem_platform.dylib 0x00000001e00c0dec _os_unfair_lock_lock_slow + 192
2 MallocStackLogging 0x00000001c04d9220 uniquing_table_stack_retain + 1052
3 MallocStackLogging 0x00000001c04dad38 add_stack_to_ptr + 168
4 MallocStackLogging 0x00000001c04da11c stack_logging_lite_malloc + 276
5 libsystem_malloc.dylib 0x00000001a84e69ac _malloc_zone_malloc + 144
6 libsystem_blocks.dylib 0x00000001e0059620 _Block_copy + 144
7 libdispatch.dylib 0x00000001024cbcb0 0x1024c8000 + 15536
8 libdispatch.dylib 0x00000001024cd734 0x1024c8000 + 22324
9 libdispatch.dylib 0x00000001024d0470 0x1024c8000 + 33904
10 libsystem_notify.dylib 0x00000001b2d6d72c 0x1b2d6b000 + 10028
11 libsystem_notify.dylib 0x00000001b2d6d550 0x1b2d6b000 + 9552
12 libdispatch.dylib 0x00000001024cd528 0x1024c8000 + 21800
13 libdispatch.dylib 0x00000001024d01cc 0x1024c8000 + 33228
14 libdispatch.dylib 0x00000001024e3a8c 0x1024c8000 + 113292
15 libdispatch.dylib 0x00000001024e0a5c 0x1024c8000 + 100956
16 libsystem_pthread.dylib 0x00000001e00d25a4 _pthread_wqthread + 272
17 libsystem_pthread.dylib 0x00000001e00d5874 start_wqthread + 8
Thread 6 Crashed:
0 libobjc.A.dylib 0x00000001ad4751cc object_getClassName + 0
1 libdispatch.dylib 0x00000001024ff7c8 0x1024c8000 + 227272
2 libdispatch.dylib 0x0000000102500948 0x1024c8000 + 231752
3 libdispatch.dylib 0x00000001024e567c 0x1024c8000 + 120444
4 libdispatch.dylib 0x00000001024e5400 0x1024c8000 + 119808
5 libdispatch.dylib 0x00000001024edba0 0x1024c8000 + 154528
6 libdispatch.dylib 0x00000001024e06f0 0x1024c8000 + 100080
7 libsystem_pthread.dylib 0x00000001e00d25a4 _pthread_wqthread + 272
8 libsystem_pthread.dylib 0x00000001e00d5874 start_wqthread + 8
Thread 7:
0 libsystem_pthread.dylib 0x00000001e00d586c start_wqthread + 0
Thread 8:
0 libsystem_pthread.dylib 0x00000001e00d586c start_wqthread + 0
Thread 6 crashed with ARM Thread State (64-bit):
x0: 0x0000000153df4000 x1: 0x0000000153df4000 x2: 0xffffffff800010ff x3: 0x00000000f8f80002
x4: 0x0000000000000000 x5: 0x0000000000000008 x6: 0x0000000117d0fb5c x7: 0x0000000000159efd
x8: 0x0000000000000100 x9: 0x0000000000000002 x10: 0x0000000000000000 x11: 0x0000000000000020
x12: 0x0000002000000000 x13: 0x000000d100000000 x14: 0x000000015caaf3a0 x15: 0x0000000000000000
x16: 0x00000001ad4751cc x17: 0x00000001027b1818 x18: 0x0000000000000000 x19: 0x000000016f80a530
x20: 0x0000000153df4000 x21: 0x000000010252c580 x22: 0x000000010252d080 x23: 0xffffffff800010ff
x24: 0x000000000002ed2b x25: 0x0000000153df4000 x26: 0x00000000000010ff x27: 0x0000000fffffc100
x28: 0x000000016f80b0e0 fp: 0x000000016f80a520 lr: 0x00000001024ff7c8
sp: 0x000000016f80a4f0 pc: 0x00000001ad4751cc cpsr: 0x80000000
esr: 0x8200000f (Instruction Abort) Permission fault
Binary Images:
0x100794000 - 0x100cbffff MyCompany arm64 <1f05dbb5cd933fb78beb5f0ffb47a8df> /var/containers/Bundle/Application/AED62231-5C98-479E-8648-2DE8CCBD1ED4/MyCompany.app/MyCompany
0x101700000 - 0x10170bfff libBacktraceRecording.dylib arm64 <7fd5bf987f933e618f51560a68fa4311> /Developer/usr/lib/libBacktraceRecording.dylib
0x101728000 - 0x10176bfff libMainThreadChecker.dylib arm64 <1ca5fde0040039aab056ef537de95613> /Developer/usr/lib/libMainThreadChecker.dylib
0x101894000 - 0x1018cbfff libViewDebuggerSupport.dylib arm64 <c43ef1193e543e80991ab37e6bf481f1> /Developer/Library/PrivateFrameworks/DTDDISupport.framework/libViewDebuggerSupport.dylib
0x101900000 - 0x10190ffff Alamofire_Synchronous arm64 <062e9e24dd07351b96fbe1a87568959e> /var/containers/Bundle/Application/AED62231-5C98-479E-8648-2DE8CCBD1ED4/MyCompany.app/Frameworks/Alamofire_Synchronous.framework/Alamofire_Synchronous
0x10192c000 - 0x101943fff FBLPromises arm64 <c7b3291d22483a55806acde09608c28c> /var/containers/Bundle/Application/AED62231-5C98-479E-8648-2DE8CCBD1ED4/MyCompany.app/Frameworks/FBLPromises.framework/FBLPromises
0x101968000 - 0x101973fff FirebaseABTesting arm64 <7b37f72950463230b61d2fefc5b773d0> /var/containers/Bundle/Application/AED62231-5C98-479E-8648-2DE8CCBD1ED4/MyCompany.app/Frameworks/FirebaseABTesting.framework/FirebaseABTesting
0x10198c000 - 0x1019a3fff FirebaseCore arm64 <4bc3d66fb5663df797c32467e52e5417> /var/containers/Bundle/Application/AED62231-5C98-479E-8648-2DE8CCBD1ED4/MyCompany.app/Frameworks/FirebaseCore.framework/FirebaseCore
0x1019c8000 - 0x1019d3fff FirebaseCoreDiagnostics arm64 <b2072ac5d92f3f6ba5eec3a4f26ad51b> /var/containers/Bundle/Application/AED62231-5C98-479E-8648-2DE8CCBD1ED4/MyCompany.app/Frameworks/FirebaseCoreDiagnostics.framework/FirebaseCoreDiagnostics
0x1019e8000 - 0x101a07fff FirebaseInstallations arm64 <03882e42b5063a0e97ebb119502c78c6> /var/containers/Bundle/Application/AED62231-5C98-479E-8648-2DE8CCBD1ED4/MyCompany.app/Frameworks/FirebaseInstallations.framework/FirebaseInstallations
0x101a50000 - 0x101abbfff dyld arm64 <f756a8d55a803b4d996236fe0e7638c2> /usr/lib/dyld
0x101b3c000 - 0x101beffff Alamofire arm64 <a09a8e2516f133e48408286527fc17f1> /var/containers/Bundle/Application/AED62231-5C98-479E-8648-2DE8CCBD1ED4/MyCompany.app/Frameworks/Alamofire.framework/Alamofire
0x101d18000 - 0x101d73fff FirebaseCrashlytics arm64 <db2ca210246c305d867a21f8918c2733> /var/containers/Bundle/Application/AED62231-5C98-479E-8648-2DE8CCBD1ED4/MyCompany.app/Frameworks/FirebaseCrashlytics.framework/FirebaseCrashlytics
0x101dec000 - 0x101e17fff FirebaseInstanceID arm64 <3f3b05cb53503f7fbff612b457500942> /var/containers/Bundle/Application/AED62231-5C98-479E-8648-2DE8CCBD1ED4/MyCompany.app/Frameworks/FirebaseInstanceID.framework/FirebaseInstanceID
0x101e50000 - 0x101e77fff FirebaseMessaging arm64 <7c0d52b76171337cba3666e58efddc67> /var/containers/Bundle/Application/AED62231-5C98-479E-8648-2DE8CCBD1ED4/MyCompany.app/Frameworks/FirebaseMessaging.framework/FirebaseMessaging
0x101eb0000 - 0x101ed7fff FirebaseRemoteConfig arm64 <1c17979d65af347294d10ca3edc7d33d> /var/containers/Bundle/Application/AED62231-5C98-479E-8648-2DE8CCBD1ED4/MyCompany.app/Frameworks/FirebaseRemoteConfig.framework/FirebaseRemoteConfig
0x101f0c000 - 0x101f33fff GoogleDataTransport arm64 <b567b98393c53fc19e2e0551d5e62baa> /var/containers/Bundle/Application/AED62231-5C98-479E-8648-2DE8CCBD1ED4/MyCompany.app/Frameworks/GoogleDataTransport.framework/GoogleDataTransport
0x101f6c000 - 0x101f93fff GoogleUtilities arm64 <8cdbd21cb80f363580ae3755ef416fac> /var/containers/Bundle/Application/AED62231-5C98-479E-8648-2DE8CCBD1ED4/MyCompany.app/Frameworks/GoogleUtilities.framework/GoogleUtilities
0x101fc8000 - 0x1020e7fff MoPub arm64 <044ce2cc34b03d63953096588d2f64b2> /var/containers/Bundle/Application/AED62231-5C98-479E-8648-2DE8CCBD1ED4/MyCompany.app/Frameworks/MoPub.framework/MoPub
0x102278000 - 0x1022cbfff ObjectMapper arm64 <d5214b328fd6386aa93efd774efba869> /var/containers/Bundle/Application/AED62231-5C98-479E-8648-2DE8CCBD1ED4/MyCompany.app/Frameworks/ObjectMapper.framework/ObjectMapper
0x102330000 - 0x10239bfff SDWebImage arm64 <149490782fc83e12b0e1c99724182b1a> /var/containers/Bundle/Application/AED62231-5C98-479E-8648-2DE8CCBD1ED4/MyCompany.app/Frameworks/SDWebImage.framework/SDWebImage
0x102438000 - 0x10245ffff SwiftyJSON arm64 <bf640f2209dd3689b086c365445dbcab> /var/containers/Bundle/Application/AED62231-5C98-479E-8648-2DE8CCBD1ED4/MyCompany.app/Frameworks/SwiftyJSON.framework/SwiftyJSON
0x1024a8000 - 0x1024b3fff nanopb arm64 <5970c0d8d73a34a98b723e07fc0c1e2f> /var/containers/Bundle/Application/AED62231-5C98-479E-8648-2DE8CCBD1ED4/MyCompany.app/Frameworks/nanopb.framework/nanopb
0x1024c8000 - 0x10250ffff libdispatch.dylib arm64 <ec4afb1d05e832a68a70bbfd52351390> /usr/lib/system/introspection/libdispatch.dylib
0x102594000 - 0x1025b7fff DebugHierarchyFoundation arm64 <4d7f946b4ca83e7f8995e4c5ea5980e3> /Developer/Library/PrivateFrameworks/DebugHierarchyFoundation.framework/DebugHierarchyFoundation
0x104660000 - 0x10466bfff libobjc-trampolines.dylib arm64 <b8c2db0f13bb343d93d8e8c6f6cee07e> /usr/lib/libobjc-trampolines.dylib
0x1046d8000 - 0x1046ebfff GAXClient arm64 <d474b09b292f326d9c229c9176ed5ebf> /System/Library/AccessibilityBundles/GAXClient.bundle/GAXClient
0x19971c000 - 0x199752fff libdyld.dylib arm64 <e31c0887c99930479b80203248ec2396> /usr/lib/system/libdyld.dylib
0x199753000 - 0x1999aafff libicucore.A.dylib arm64 <9fc7dac3deed3a479abbe36867045ba5> /usr/lib/libicucore.A.dylib
0x1999ab000 - 0x199d54fff CoreFoundation arm64 <96f8386dd88a3c89a323a17975c3317f> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
0x199d55000 - 0x199eeefff CoreServices arm64 <dd083b6922803f7e913646c9246b4a9d> /System/Library/Frameworks/CoreServices.framework/CoreServices
0x199eef000 - 0x199f37fff WirelessDiagnostics arm64 <fbd6e8b92c91309fa9c26c9653c8cb1a> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics
0x199f38000 - 0x199fb0fff SystemConfiguration arm64 <75fec68015053f2e84dc4a0a8586c617> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
0x199fb1000 - 0x19a09bfff CoreTelephony arm64 <1491284f13863425978d2f39e060af95> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
0x19a09c000 - 0x19a51dfff CFNetwork arm64 <e261fa7130e23e6a8db232ecf79b30bf> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
0x19a51e000 - 0x19abe3fff libnetwork.dylib arm64 <c67a2d7144153f82939965c3956520ae> /usr/lib/libnetwork.dylib
0x19abe4000 - 0x19ac54fff Accounts arm64 <dac79be132833bf8918bbbdca7a51004> /System/Library/Frameworks/Accounts.framework/Accounts
0x19ac55000 - 0x19aeeffff Foundation arm64 <f1bc26a1f5bb36f7a65ad5f232dbf902> /System/Library/Frameworks/Foundation.framework/Foundation
0x19aef0000 - 0x19b253fff ImageIO arm64 <982bf9fe32a43e0b95d21a5c8d206947> /System/Library/Frameworks/ImageIO.framework/ImageIO
0x19b254000 - 0x19b26cfff libCGInterfaces.dylib arm64 <e6ddc58214b83593ad32b8ef9da35b5d> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Libraries/libCGInterfaces.dylib
0x19b26d000 - 0x19b7fbfff CoreGraphics arm64 <9c095d1529953f9daf186a3a3d13a1f2> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
0x19b7fc000 - 0x19cbc3fff UIKitCore arm64 <71b59f6219da3cff89e1dacf333bab0d> /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
0x19cbc4000 - 0x19cbe1fff libAccessibility.dylib arm64 <7b14f8ae35623cc7926d086785c913ea> /usr/lib/libAccessibility.dylib
0x19cbe2000 - 0x19ce55fff QuartzCore arm64 <ca8f28fcac5b3015ae8c4f2c0102efb4> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
0x19ce56000 - 0x19cebbfff BackBoardServices arm64 <4f98188591a0352b809337236d822a02> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
0x19cebc000 - 0x19cf43fff TextInput arm64 <1a8e17692974328eb137a99894619a83> /System/Library/PrivateFrameworks/TextInput.framework/TextInput
0x19cf44000 - 0x19cfabfff libusrtcp.dylib arm64 <38d49d34771036a6933f051f5fd93ef8> /usr/lib/libusrtcp.dylib
0x19cfac000 - 0x19d341fff AppleMediaServices arm64 <39ffde16f1543a68b2c4be56eca89663> /System/Library/PrivateFrameworks/AppleMediaServices.framework/AppleMediaServices
0x19d342000 - 0x19d4a5fff libswiftFoundation.dylib arm64 <191cea851b253208a4634707cf529728> /usr/lib/swift/libswiftFoundation.dylib
0x19d4a6000 - 0x19d855fff libswiftCore.dylib arm64 <3e4b597efce53f3ea83095489114d8e4> /usr/lib/swift/libswiftCore.dylib
0x19d856000 - 0x19d86afff UIKitServices arm64 <6cfeb1e50b2232a8a45133d5027c8543> /System/Library/PrivateFrameworks/UIKitServices.framework/UIKitServices
0x19d86b000 - 0x19d9b3fff Preferences arm64 <930c7b581c853df198797b670f87c45f> /System/Library/PrivateFrameworks/Preferences.framework/Preferences
0x19d9b4000 - 0x19dbc2fff ContactsUI arm64 <e57806e602dd3bfa8d2e221a4b322002> /System/Library/Frameworks/ContactsUI.framework/ContactsUI
0x19dbc3000 - 0x19dd7cfff CoreText arm64 <6e6f5e0cd9e1304b83482c0b4ab2a7af> /System/Library/Frameworks/CoreText.framework/CoreText
0x19dd7d000 - 0x19dd95fff ExtensionKit arm64 <cb5f54bf46473348bf62ab7275e6307e> /System/Library/PrivateFrameworks/ExtensionKit.framework/ExtensionKit
0x19ddaa000 - 0x19de27fff BaseBoard arm64 <7f0411a61fcc389aa498fbdbe078bbe3> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
0x19de28000 - 0x19e03dfff CoreDuet arm64 <0e709564f48b3d798ad7abbd403a1251> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet
0x19e03e000 - 0x19e189fff Contacts arm64 <738a964f2592342c8cf8ed3df85a7fd6> /System/Library/Frameworks/Contacts.framework/Contacts
0x19e18a000 - 0x19f5eefff GeoServices arm64 <b325f8217862350fa5b1b5d434f423d9> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
0x19f5ef000 - 0x19f674fff CoreLocation arm64 <480e95ff24123860bc54c9c4ede7bbf4> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
0x19f675000 - 0x19f811fff CloudKit arm64 <5ee14a0a271b378cbc357efd5ef1a33b> /System/Library/Frameworks/CloudKit.framework/CloudKit
0x19f812000 - 0x19fb7afff CoreData arm64 <512043667c483b36b1e02c95663aec71> /System/Library/Frameworks/CoreData.framework/CoreData
0x1a0764000 - 0x1a076efff libswiftCoreGraphics.dylib arm64 <a1566d3c40ca35409a4be98a484640a9> /usr/lib/swift/libswiftCoreGraphics.dylib
0x1a076f000 - 0x1a07adfff AppSupport arm64 <17db41b85aba31299c64512406a5e5d2> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
0x1a07ae000 - 0x1a08cbfff ManagedConfiguration arm64 <1b9df1125b5e3efcb19ca301d7d2e3ee> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
0x1a08cc000 - 0x1a0938fff IMFoundation arm64 <7f1639eb9c5837819ad1522da82ab6cd> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
0x1a0939000 - 0x1a0a3bfff IDS arm64 <8ddeaeaa96da3c9b88ba4ca207e7ef54> /System/Library/PrivateFrameworks/IDS.framework/IDS
0x1a0a3c000 - 0x1a0b79fff Security arm64 <149f8d12822a31a198bf48ce690f678d> /System/Library/Frameworks/Security.framework/Security
0x1a0b7a000 - 0x1a0f71fff MediaPlayer arm64 <a73f58a9bbe83ceab929dedef2c0d10c> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
0x1a0f72000 - 0x1a0f89fff AudioSession arm64 <3236a3742eae394a96a2237aaf3b5f3d> /System/Library/PrivateFrameworks/AudioSession.framework/AudioSession
0x1a0f8a000 - 0x1a1103fff AVFCore arm64 <8cdc508c3c8e336b9f29d32c4eedce43> /System/Library/PrivateFrameworks/AVFCore.framework/AVFCore
0x1a1104000 - 0x1a1668fff Intents arm64 <f3199470a1173b99988709c323bcadaf> /System/Library/Frameworks/Intents.framework/Intents
0x1a1669000 - 0x1a16b4fff TextInputUI arm64 <352b17033e9b33a18f516aee1ff5b146> /System/Library/PrivateFrameworks/TextInputUI.framework/TextInputUI
0x1a16b5000 - 0x1a19b2fff CoreImage arm64 <a5984c5ef0a53d98874cb0eaf2646a30> /System/Library/Frameworks/CoreImage.framework/CoreImage
0x1a19b3000 - 0x1a1a6dfff ColorSync arm64 <037592c7bb1f32af921e472cf9a95b88> /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync
0x1a1a6e000 - 0x1a1aa6fff CoreVideo arm64 <e2d305b72dbf3d3dad312315c9d43030> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
0x1a1aa7000 - 0x1a21c8fff MediaToolbox arm64 <7f5ea89db4bc3f6daf02b27a41f5902d> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
0x1a21c9000 - 0x1a22bcfff CoreMedia arm64 <7f6e05169d013c1d97abfac25c60b10b> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
0x1a22bd000 - 0x1a2528fff AudioToolbox arm64 <49e931593939360bb0310716e712c473> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
0x1a2529000 - 0x1a2578fff CoreHaptics arm64 <cf8486abf83b3a7a8d4c47af334e51a2> /System/Library/Frameworks/CoreHaptics.framework/CoreHaptics
0x1a2579000 - 0x1a25d5fff UserActivity arm64 <204eaf6b983f3b879576eddba86a425e> /System/Library/PrivateFrameworks/UserActivity.framework/UserActivity
0x1a25d6000 - 0x1a26d7fff UIFoundation arm64 <89449f94ec45399cb82200e854334e0b> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
0x1a26d8000 - 0x1a26fdfff libsystem_info.dylib arm64 <3536d46d36cd3af4b92c67e4bdebd8c6> /usr/lib/system/libsystem_info.dylib
0x1a26fe000 - 0x1a277afff libsystem_c.dylib arm64 <edf3e843a62a3dd092ccebe94d5a83e3> /usr/lib/system/libsystem_c.dylib
0x1a277b000 - 0x1a27c3fff RunningBoardServices arm64 <b10f31f81c803bc5a4f87e58d284400a> /System/Library/PrivateFrameworks/RunningBoardServices.framework/RunningBoardServices
0x1a27c4000 - 0x1a36fafff JavaScriptCore arm64 <0a413324bb1c3b0182117a3e55a9f115> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
0x1a3c8e000 - 0x1a3d13fff ContactsFoundation arm64 <fcc7ad598bc8393191d6af0a15db9161> /System/Library/PrivateFrameworks/ContactsFoundation.framework/ContactsFoundation
0x1a3d14000 - 0x1a3f38fff HealthKit arm64 <d30da3534de1340583bdcd924d6a5b76> /System/Library/Frameworks/HealthKit.framework/HealthKit
0x1a3f39000 - 0x1a3f5afff ProactiveEventTracker arm64 <fd944cb63edb38ac827a91b7262ed683> /System/Library/PrivateFrameworks/ProactiveEventTracker.framework/ProactiveEventTracker
0x1a3f5b000 - 0x1a3fa5fff Lexicon arm64 <6d531b4861bc332fb00b8a42e2778491> /System/Library/PrivateFrameworks/Lexicon.framework/Lexicon
0x1a3fa6000 - 0x1a400efff PersonalizationPortrait arm64 <8bb6361b8a5030f289ffaaf8c8cb2e7a> /System/Library/PrivateFrameworks/PersonalizationPortrait.framework/PersonalizationPortrait
0x1a400f000 - 0x1a405bfff CoreDuetContext arm64 <8d8c5f76d56a3c5c9f433e44ec1fcad3> /System/Library/PrivateFrameworks/CoreDuetContext.framework/CoreDuetContext
0x1a405c000 - 0x1a4102fff IOKit arm64 <c50846c1e80d37e886984cf410de47a6> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x1a4103000 - 0x1a4112fff DataMigration arm64 <9bef406302373341973658d5fe3338ff> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
0x1a4113000 - 0x1a416efff SpringBoardServices arm64 <b44c661eec0f39e0872e7307a4afe679> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
0x1a416f000 - 0x1a4180fff ContextKit arm64 <b5a6fc21557c37e2a2d0f29b943dd511> /System/Library/PrivateFrameworks/ContextKit.framework/ContextKit
0x1a4181000 - 0x1a43dafff CoreMotion arm64 <cd1f30042ba23375a217a01310cc1316> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
0x1a43db000 - 0x1a4511fff EventKit arm64 <184114113e0b34ada009e79f7a56ee66> /System/Library/Frameworks/EventKit.framework/EventKit
0x1a4a31000 - 0x1a4ca1fff MediaRemote arm64 <72424f62d23434bfaee4de96abc09861> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
0x1a4ca2000 - 0x1a4e3afff CoreUtils arm64 <1430df995b78363e964565be13d50bbf> /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
0x1a4e3b000 - 0x1a4e50fff FamilyCircle arm64 <e02e84d2fbbb300bb49caae97f43379b> /System/Library/PrivateFrameworks/FamilyCircle.framework/FamilyCircle
0x1a4e51000 - 0x1a4ebdfff CoreSpotlight arm64 <9be37e0ee25136ee996bc6a6f6e835f0> /System/Library/Frameworks/CoreSpotlight.framework/CoreSpotlight
0x1a5295000 - 0x1a541efff AssistantServices arm64 <680eea804df4372490c73ae967765f83> /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices
0x1a541f000 - 0x1a54e0fff CoreUI arm64 <5d80f7fa7f2b39929905a3b22c641f29> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
0x1a54e1000 - 0x1a552efff SafariSafeBrowsing arm64 <c785e4c6fae03774bba068f7778542c0> /System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/SafariSafeBrowsing
0x1a552f000 - 0x1a5c5dfff WebKit arm64 <19789fd9109837b7b6399e4f0eb867d6> /System/Library/Frameworks/WebKit.framework/WebKit
0x1a5c5e000 - 0x1a8006fff WebCore arm64 <cb20a111c82d3e17ab3a08002f1f0525> /System/Library/PrivateFrameworks/WebCore.framework/WebCore
0x1a8007000 - 0x1a8064fff libMobileGestalt.dylib arm64 <448540b0eca03930b98b2d18101114d6> /usr/lib/libMobileGestalt.dylib
0x1a8065000 - 0x1a8080fff CommonUtilities arm64 <3ffd6ea3f0683eb49ab5ba7f761201bc> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
0x1a8081000 - 0x1a81e6fff IDSFoundation arm64 <9167012f8eb333858885825cc96089b8> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
0x1a81e7000 - 0x1a82e4fff IMSharedUtilities arm64 <429bb5ecefd63e00bf9853c8eec2ea22> /System/Library/PrivateFrameworks/IMSharedUtilities.framework/IMSharedUtilities
0x1a82e5000 - 0x1a8385fff CoreSuggestions arm64 <16a233726a913a77a08e8c624335b5f2> /System/Library/PrivateFrameworks/CoreSuggestions.framework/CoreSuggestions
0x1a8386000 - 0x1a8420fff AddressBookLegacy arm64 <d040464b88cb343187a1d4339ab93540> /System/Library/PrivateFrameworks/AddressBookLegacy.framework/AddressBookLegacy
0x1a8421000 - 0x1a8451fff UserNotifications arm64 <166b5573570d31148c448c2661204d60> /System/Library/Frameworks/UserNotifications.framework/UserNotifications

iOS Distribution signing - Crash on startup on non-debug builds

I'm having a very weird problem happening with my iOS signing with which I've been struggling for a while.
It goes like this:
sign an app with a development certificate/profile, and run it on a device, it works perfectly.
sign an app with a distribution certificate/ad-hoc profile, and run it on a device, it goes in a gray screen for 20s then crashes.
run the app signed with development credentials, then run the one signed with distribution credentials on top of it (install without uninstalling previous version), it works perfectly.
I cannot get through this in any way shape or form I'd try. Different developer accounts, different app ids, different distribution certificate and different provisioning profiles, completely wiped my mac and reinstalled all tools from scratch.
I'm 100% certain that the distribution profile has my device UDID, and matches the certificate.
Crash log:
Incident Identifier: 21DCDDC7-FFD0-4217-9309-6653BD667AF7
CrashReporter Key: 1ea92b0cd7119f43fced0aec1e30348e69764939
Hardware Model: iPhone11,2
Process: ballz [10603]
Path: /private/var/containers/Bundle/Application/9FFBD7C2-D37A-4788-AD5B-AB465A254EDB/ballz.app/ballz
Identifier: com.blastproof.dev
Version: 0 (1.3)
Code Type: ARM-64 (Native)
Role: Foreground
Parent Process: launchd [1]
Coalition: com.blastproof.dev [2336]
Date/Time: 2020-04-22 10:10:20.0234 +0300
Launch Time: 2020-04-22 10:09:59.8603 +0300
OS Version: iPhone OS 13.4.1 (17E262)
Release Type: User
Baseband Version: 2.05.13
Report Version: 104
Exception Type: EXC_CRASH (SIGKILL)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note: EXC_CORPSE_NOTIFY
Termination Reason: Namespace SPRINGBOARD, Code 0x8badf00d
Termination Description: SPRINGBOARD, process-launch watchdog transgression: application<com.blastproof.dev>:10603 exhausted real (wall clock) time allowance of 20.00 seconds | ProcessVisibility: Unknown | ProcessState: Running | WatchdogEvent: process-launch | WatchdogVisibility: Foreground | WatchdogCPUStatistics: ( | "Elapsed total CPU time (seconds): 8.660 (user 8.660, system 0.000), 7% CPU", | "Elapsed application CPU time (seconds): 0.144, 0% CPU" | )
Triggered by Thread: 0
Thread 0 name: Dispatch queue: com.apple.main-thread
Thread 0 Crashed:
0 libsystem_kernel.dylib 0x00000001afe6b7e4 __ulock_wait + 8
1 libdispatch.dylib 0x00000001afd24cd8 _dlock_wait + 56
2 libdispatch.dylib 0x00000001afd24c10 _dispatch_once_wait + 124
3 CoreFoundation 0x00000001b006fd18 __CFLookupCoreServicesInternalFunction + 100
4 CoreFoundation 0x00000001b0054a14 ____CFCoreServicesInternal__FSURLBeginResourcePropertyCacheAccess_block_invoke + 24
5 libdispatch.dylib 0x00000001afd2433c _dispatch_client_callout + 20
6 libdispatch.dylib 0x00000001afd25a68 _dispatch_once_callout + 32
7 CoreFoundation 0x00000001b00517cc __CFURLBeginResourcePropertyCacheAccess + 112
8 CoreFoundation 0x00000001aff720e4 -[NSURL setResourceValues:error:] + 96
9 Foundation 0x00000001b037dcac -[NSFileManager setAttributes:ofItemAtPath:error:] + 1048
10 Foundation 0x00000001b038e52c -[NSFileManager createDirectoryAtPath:withIntermediateDirectories:attributes:error:] + 432
11 WebKit 0x00000001b789ddf4 WebKit::resolveAndCreateReadWriteDirectoryForSandboxExtension+ 1543668 (WTF::String const&) + 112
12 WebKit 0x00000001b79af62c WebKit::WebProcessPool::platformResolvePathsForSandboxExtensions+ 2663980 () + 220
13 WebKit 0x00000001b7a00ff8 WebKit::WebProcessPool::resolvePathsForSandboxExtensions+ 2998264 () + 320
14 WebKit 0x00000001b7a00c8c WebKit::WebProcessPool::WebProcessPool+ 2997388 (API::ProcessPoolConfiguration&) + 1336
15 WebKit 0x00000001b7727e9c -[WKProcessPool _initWithConfiguration:] + 100
16 WebKit 0x00000001b7731eb4 -[WKProcessPool init] + 56
17 WebKit 0x00000001b772b588 -[WKWebViewConfiguration processPool] + 40
18 WebKit 0x00000001b772b228 -[WKWebViewConfiguration copyWithZone:] + 132
19 WebKit 0x00000001b7728cdc -[WKWebView _initializeWithConfiguration:] + 136
20 WebKit 0x00000001b7728c40 -[WKWebView initWithFrame:configuration:] + 80
21 WebKit 0x00000001b7732388 -[WKWebView initWithFrame:] + 96
22 FairBidSDK 0x0000000105a4c464 0x105998000 + 738404
23 libdispatch.dylib 0x00000001afd2433c _dispatch_client_callout + 20
24 libdispatch.dylib 0x00000001afd25a68 _dispatch_once_callout + 32
25 FairBidSDK 0x0000000105a4c25c 0x105998000 + 737884
26 FairBidSDK 0x0000000105a4c1e0 0x105998000 + 737760
27 libobjc.A.dylib 0x00000001afda1be0 load_images + 952
28 libdyld.dylib 0x00000001afe8443c invocation function for block in dyld3::AllImages::runInitialzersBottomUp+ 66620 (dyld3::closure::Image const*) + 224
29 libdyld.dylib 0x00000001afe76ba8 dyld3::closure::Image::forEachImageToInitBefore(void + 11176 (unsigned int, bool&) block_pointer) const + 104
30 libdyld.dylib 0x00000001afe84e20 dyld3::AllImages::loadImage+ 69152 (Diagnostics&, unsigned int, dyld3::closure::DlopenClosure const*, bool, bool, bool, bool) + 652
31 libdyld.dylib 0x00000001afe849ec dyld3::AllImages::dlopen+ 68076 (Diagnostics&, char const*, bool, bool, bool, bool, bool, void const*) + 868
32 libdyld.dylib 0x00000001afe86434 dyld3::dlopen_internal+ 74804 (char const*, int, void*) + 364
33 libdyld.dylib 0x00000001afe796c0 dlopen + 116
34 CoreFoundation 0x00000001b008b7e8 _CFBundleDlfcnLoadFramework + 140
35 CoreFoundation 0x00000001affadee8 _CFBundleLoadExecutableAndReturnError + 432
36 Foundation 0x00000001b037e7a8 -[NSBundle loadAndReturnError:] + 316
37 ballz 0x0000000100bb3d54 UnityFrameworkLoad() + 32084 (main.mm:12)
38 ballz 0x0000000100bb3dfc main + 32252 (main.mm:0)
39 libdyld.dylib 0x00000001afe751ec start + 4
Thread 1 name: Dispatch queue: com.apple.NSURLSession-work
Thread 1:
0 libsystem_kernel.dylib 0x00000001afe6ac10 __psynch_mutexwait + 8
1 libsystem_pthread.dylib 0x00000001afd8e808 _pthread_mutex_firstfit_lock_wait + 92
2 libsystem_pthread.dylib 0x00000001afd8e778 _pthread_mutex_firstfit_lock_slow + 260
3 libdyld.dylib 0x00000001afe8654c dyld3::dlopen_preflight_internal+ 75084 (char const*) + 56
4 libdyld.dylib 0x00000001afe79798 dlopen_preflight + 108
5 CoreFoundation 0x00000001b0082a70 _binaryLoadable + 92
6 CoreFoundation 0x00000001b0082368 _CFBundleCopyExecutableURLInDirectory2 + 568
7 CoreFoundation 0x00000001b008b21c _CFBundleDlfcnCheckLoaded + 64
8 CoreFoundation 0x00000001affac784 _CFBundleEnsureBundleExistsForImagePath + 120
9 CoreFoundation 0x00000001affac5f8 CFBundleGetBundleWithIdentifier + 244
10 CFNetwork 0x00000001b33ef6a0 0x1b331d000 + 861856
11 libsystem_pthread.dylib 0x00000001afd8aeb0 __pthread_once_handler + 80
12 libsystem_platform.dylib 0x00000001afd858cc _os_once_callout + 32
13 libsystem_pthread.dylib 0x00000001afd8ae44 pthread_once + 100
14 CFNetwork 0x00000001b33ef5f4 0x1b331d000 + 861684
15 CFNetwork 0x00000001b33f016c _CFNetworkErrorCopyLocalizedDescriptionWithHostname + 84
16 Foundation 0x00000001b049b7fc localizedDescriptionForError + 68
17 Foundation 0x00000001b03c7d18 -[NSError+ 576792 (NSURLExtrasInternal) _web_initWithDomain_nowarn:code:URL:] + 172
18 Foundation 0x00000001b03c2c98 +[NSError+ 556184 (NSURLExtras) _web_errorWithDomain:code:URL:] + 60
19 CFNetwork 0x00000001b3330284 0x1b331d000 + 78468
20 libdispatch.dylib 0x00000001afd22ec4 _dispatch_call_block_and_release + 32
21 libdispatch.dylib 0x00000001afd2433c _dispatch_client_callout + 20
22 libdispatch.dylib 0x00000001afd2a85c _dispatch_lane_serial_drain + 568
23 libdispatch.dylib 0x00000001afd2b2c4 _dispatch_lane_invoke + 452
24 libdispatch.dylib 0x00000001afd34928 _dispatch_workloop_worker_thread + 584
25 libsystem_pthread.dylib 0x00000001afd8b714 _pthread_wqthread + 276
26 libsystem_pthread.dylib 0x00000001afd919c8 start_wqthread + 8
Thread 2 name: Dispatch queue: com.apple.NSURLSession-work
Thread 2:
0 libsystem_kernel.dylib 0x00000001afe6ac10 __psynch_mutexwait + 8
1 libsystem_pthread.dylib 0x00000001afd8e808 _pthread_mutex_firstfit_lock_wait + 92
2 libsystem_pthread.dylib 0x00000001afd8e778 _pthread_mutex_firstfit_lock_slow + 260
3 libdyld.dylib 0x00000001afe86314 dyld3::dlopen_internal+ 74516 (char const*, int, void*) + 76
4 libdyld.dylib 0x00000001afe796c0 dlopen + 116
5 CoreFoundation 0x00000001b006fd50 ____CFLookupCoreServicesInternalFunction_block_invoke + 52
6 libdispatch.dylib 0x00000001afd2433c _dispatch_client_callout + 20
7 libdispatch.dylib 0x00000001afd25a68 _dispatch_once_callout + 32
8 CoreFoundation 0x00000001b006fd18 __CFLookupCoreServicesInternalFunction + 100
9 CoreFoundation 0x00000001b0054974 ____CFCoreServicesInternal__FSURLCopyResourcePropertyForKey_block_invoke + 24
10 libdispatch.dylib 0x00000001afd2433c _dispatch_client_callout + 20
11 libdispatch.dylib 0x00000001afd25a68 _dispatch_once_callout + 32
12 CoreFoundation 0x00000001b004e65c CFURLCopyResourcePropertyForKey + 284
13 CFNetwork 0x00000001b334f868 0x1b331d000 + 206952
14 libdispatch.dylib 0x00000001afd2433c _dispatch_client_callout + 20
15 libdispatch.dylib 0x00000001afd25a68 _dispatch_once_callout + 32
16 CFNetwork 0x00000001b334f6fc 0x1b331d000 + 206588
17 CFNetwork 0x00000001b3532c2c 0x1b331d000 + 2186284
18 libdispatch.dylib 0x00000001afd2433c _dispatch_client_callout + 20
19 libdispatch.dylib 0x00000001afd25a68 _dispatch_once_callout + 32
20 CFNetwork 0x00000001b3532b24 0x1b331d000 + 2186020
21 CFNetwork 0x00000001b332eb58 0x1b331d000 + 72536
22 CFNetwork 0x00000001b3457a88 0x1b331d000 + 1288840
23 CFNetwork 0x00000001b3321ea8 0x1b331d000 + 20136
24 CFNetwork 0x00000001b3341b10 0x1b331d000 + 150288
25 CFNetwork 0x00000001b3321624 0x1b331d000 + 17956
26 CFNetwork 0x00000001b331ec20 0x1b331d000 + 7200
27 CFNetwork 0x00000001b3550f3c 0x1b331d000 + 2309948
28 libdispatch.dylib 0x00000001afd22ec4 _dispatch_call_block_and_release + 32
29 libdispatch.dylib 0x00000001afd2433c _dispatch_client_callout + 20
30 libdispatch.dylib 0x00000001afd2a85c _dispatch_lane_serial_drain + 568
31 libdispatch.dylib 0x00000001afd2b2c4 _dispatch_lane_invoke + 452
32 libdispatch.dylib 0x00000001afd34928 _dispatch_workloop_worker_thread + 584
33 libsystem_pthread.dylib 0x00000001afd8b714 _pthread_wqthread + 276
34 libsystem_pthread.dylib 0x00000001afd919c8 start_wqthread + 8
Thread 3 name: JavaScriptCore bmalloc scavenger
Thread 3:
0 libsystem_kernel.dylib 0x00000001afe6abc0 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x00000001afd8d1e4 _pthread_cond_wait + 680
2 libc++.1.dylib 0x00000001afebeca8 std::__1::condition_variable::wait+ 52392 (std::__1::unique_lock<std::__1::mutex>&) + 28
3 JavaScriptCore 0x00000001bf388e88 void std::__1::condition_variable_any::wait<std::__1::unique_lock<bmalloc::Mutex> >+ 577160 (std::__1::unique_lock<bmalloc::Mutex>&) + 104
4 JavaScriptCore 0x00000001bf38cc34 bmalloc::Scavenger::threadRunLoop+ 592948 () + 156
5 JavaScriptCore 0x00000001bf38c958 bmalloc::Scavenger::Scavenger+ 592216 (std::__1::lock_guard<bmalloc::Mutex> const&) + 0
6 JavaScriptCore 0x00000001bf38dbd0 std::__1::__thread_specific_ptr<std::__1::__thread_struct>::set_pointer+ 596944 (std::__1::__thread_struct*) + 0
7 libsystem_pthread.dylib 0x00000001afd898fc _pthread_start + 168
8 libsystem_pthread.dylib 0x00000001afd919d4 thread_start + 8
Thread 4:
0 libsystem_pthread.dylib 0x00000001afd919c0 start_wqthread + 0
Thread 0 crashed with ARM Thread State (64-bit):
x0: 0xfffffffffffffffc x1: 0x0000000000000000 x2: 0x0000000000002205 x3: 0x0000000000000000
x4: 0x00000000000041b7 x5: 0x000000000000000f x6: 0x0000000000000000 x7: 0x0000000000000000
x8: 0x0000000000002603 x9: 0x0000000000002204 x10: 0x0000000000000001 x11: 0x0000000000000001
x12: 0x0000000000000000 x13: 0x0000000000000000 x14: 0x00000001ec2cd646 x15: 0x00000001f1dd1f48
x16: 0x0000000000000203 x17: 0x00000001b006fd1c x18: 0x0000000000000000 x19: 0x0000000000000000
x20: 0x00000001fda519e8 x21: 0x0000000001000002 x22: 0x0000000000002205 x23: 0x00000002814fd0e0
x24: 0x0000000000000000 x25: 0x00000001ec2cd000 x26: 0x00000001ec2ccfa6 x27: 0x00000001ec2cd000
x28: 0x0000000000000000 fp: 0x000000016f24d440 lr: 0x00000001afd24cd8
sp: 0x000000016f24d420 pc: 0x00000001afe6b7e4 cpsr: 0x00000000
esr: 0x56000080 Address size fault
Binary Images:
0x100bac000 - 0x100bb3fff ballz arm64 <d67b6e43f5be3c2a9ff97f5cd243c58b> /var/containers/Bundle/Application/9FFBD7C2-D37A-4788-AD5B-AB465A254EDB/ballz.app/ballz
0x100c50000 - 0x100c5bfff libobjc-trampolines.dylib arm64e <cc80c891368533149cb4d5b6742345d9> /usr/lib/libobjc-trampolines.dylib
0x100e00000 - 0x100e67fff dyld arm64e <592a4b82e7623dc69409d35dd4a89b6f> /usr/lib/dyld
0x102240000 - 0x104edffff UnityFramework arm64 <f2a707be746e36539d9c5d0cef1be286> /var/containers/Bundle/Application/9FFBD7C2-D37A-4788-AD5B-AB465A254EDB/ballz.app/Frameworks/UnityFramework.framework/UnityFramework
0x105998000 - 0x105b43fff FairBidSDK arm64 <b50b1c2e69ad3d4bbdd83ac2ac73431a> /var/containers/Bundle/Application/9FFBD7C2-D37A-4788-AD5B-AB465A254EDB/ballz.app/Frameworks/FairBidSDK.framework/FairBidSDK
0x1afc56000 - 0x1afc6cfff libsystem_trace.dylib arm64e <426db377a1b83286a6f0b76c54b67296> /usr/lib/system/libsystem_trace.dylib
0x1afc6d000 - 0x1afca0fff libxpc.dylib arm64e <b18d50ebbc6a3b30ba17d0ec38c1f6cd> /usr/lib/system/libxpc.dylib
0x1afca1000 - 0x1afca1fff libsystem_blocks.dylib arm64e <6ff4a25c412e3ce4b1b334944f09ce82> /usr/lib/system/libsystem_blocks.dylib
0x1afca2000 - 0x1afd20fff libsystem_c.dylib arm64e <7f94328bc9753618a7b810f446959ed4> /usr/lib/system/libsystem_c.dylib
0x1afd21000 - 0x1afd5efff libdispatch.dylib arm64e <783b1b755a873a6eb7235caa2663c75f> /usr/lib/system/libdispatch.dylib
0x1afd5f000 - 0x1afd80fff libsystem_malloc.dylib arm64e <37a79e73afa13935b4ab7f231581c343> /usr/lib/system/libsystem_malloc.dylib
0x1afd81000 - 0x1afd87fff libsystem_platform.dylib arm64e <5ba431b074c93dfeb5156ba90b508b21> /usr/lib/system/libsystem_platform.dylib
0x1afd88000 - 0x1afd92fff libsystem_pthread.dylib arm64e <40438d42d12a3fa1b5e6a999495181c8> /usr/lib/system/libsystem_pthread.dylib
0x1afd93000 - 0x1afdc4fff libobjc.A.dylib arm64e <fbeed962693f3ee780ce9764def56b78> /usr/lib/libobjc.A.dylib
0x1afdc5000 - 0x1afe2dfff libcorecrypto.dylib arm64e <8e3f0607615e3a2faa0acb305aa34025> /usr/lib/system/libcorecrypto.dylib
0x1afe2e000 - 0x1afe43fff libc++abi.dylib arm64e <7773c226504f342b8879a9dfcbb953f2> /usr/lib/libc++abi.dylib
0x1afe44000 - 0x1afe73fff libsystem_kernel.dylib arm64e <08b76adcceb7388fb4b2bdd52c7375e3> /usr/lib/system/libsystem_kernel.dylib
0x1afe74000 - 0x1afea8fff libdyld.dylib arm64e <95b366e7f5bd3308941624b35999029b> /usr/lib/system/libdyld.dylib
0x1afea9000 - 0x1afeb1fff libsystem_darwin.dylib arm64e <90a47653df0c346c8cfa1d81ea87b244> /usr/lib/system/libsystem_darwin.dylib
0x1afeb2000 - 0x1aff0ffff libc++.1.dylib arm64e <cd3dd206dfc53d7a87fa84c638fe62a4> /usr/lib/libc++.1.dylib
0x1aff10000 - 0x1aff51fff libsystem_info.dylib arm64e <2f8814e1526f3e91800eb99f964e4af6> /usr/lib/system/libsystem_info.dylib
0x1aff52000 - 0x1b02cffff CoreFoundation arm64e <9624aafd54373772a5070f357875808d> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
0x1b02d0000 - 0x1b033afff SystemConfiguration arm64e <51f61d30a54a32fe83e0c07fde17d338> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
0x1b033b000 - 0x1b0606fff Foundation arm64e <2b7bd2f310a83cba9de35e1f48d9213e> /System/Library/Frameworks/Foundation.framework/Foundation
0x1b0607000 - 0x1b0639fff libCRFSuite.dylib arm64e <f96596c0977f3fb98170380eb0f00d36> /usr/lib/libCRFSuite.dylib
0x1b063a000 - 0x1b07bcfff CoreServices arm64e <596f36898d543a38b2b5bbea04307885> /System/Library/Frameworks/CoreServices.framework/CoreServices
0x1b07bd000 - 0x1b081efff libSparse.dylib arm64e <b3953d5d15143fc2af0f68e3a2f84482> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib
0x1b081f000 - 0x1b0d18fff ImageIO arm64e <fe80d4682d9137ed81277b974db00e16> /System/Library/Frameworks/ImageIO.framework/ImageIO
0x1b0d19000 - 0x1b0d1bfff ConstantClasses arm64e <25cdea383a8435f68d0ae0ab21f8cf06> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
0x1b0d1c000 - 0x1b0eb5fff CoreText arm64e <ad12aef7516e3a6b945901e7e920185b> /System/Library/Frameworks/CoreText.framework/CoreText
0x1b0eb6000 - 0x1b0ff3fff Security arm64e <9586a2f262ad35f18e17c109a5a6912b> /System/Library/Frameworks/Security.framework/Security
0x1b0ff4000 - 0x1b109afff IOKit arm64e <0673030ac3a53e6684e39a9983b8611b> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x1b109b000 - 0x1b10d2fff libMobileGestalt.dylib arm64e <2c5bcc45e38933258737e4748cd4fc06> /usr/lib/libMobileGestalt.dylib
0x1b10d3000 - 0x1b1131fff libprotobuf.dylib arm64e <16aa80901ca93d1b850ebb321f5652be> /usr/lib/libprotobuf.dylib
0x1b1132000 - 0x1b1144fff libprotobuf-lite.dylib arm64e <1ead3579ffd53147a9b0e1448130a5eb> /usr/lib/libprotobuf-lite.dylib
0x1b1145000 - 0x1b13a4fff libicucore.A.dylib arm64e <2dc1dc2c3d13301aaef393611a29247d> /usr/lib/libicucore.A.dylib
0x1b13cf000 - 0x1b1415fff WirelessDiagnostics arm64e <4ed0df42185a389f8281246f8d62fe22> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics
0x1b1416000 - 0x1b1452fff libAWDSupport.dylib arm64e <f2ada8e3d47a337ea49581e8cf4243c6> /usr/lib/libAWDSupport.dylib
0x1b1453000 - 0x1b18a2fff CoreAudio arm64e <9364d152f3343c9bbf44b1a1ced221c2> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
0x1b18a3000 - 0x1b1b7cfff CoreImage arm64e <534b276bf3b6335e8a15ed7539c54702> /System/Library/Frameworks/CoreImage.framework/CoreImage
0x1b1b7d000 - 0x1b1c70fff LanguageModeling arm64e <90ce29bed96333cfb02c02a5d1c03678> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
0x1b1c71000 - 0x1b1cb7fff Lexicon arm64e <28d1fcd6487b3219a7de87ad3c852558> /System/Library/PrivateFrameworks/Lexicon.framework/Lexicon
0x1b1cb8000 - 0x1b1e3efff libsqlite3.dylib arm64e <8a0963ecea66378d956bfaaa54508afd> /usr/lib/libsqlite3.dylib
0x1b1e3f000 - 0x1b1e71fff MobileKeyBag arm64e <c66d0ee2e7943bcdbb2f426de2d3e207> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
0x1b1e72000 - 0x1b1e7bfff libsystem_notify.dylib arm64e <2509ff7f57e533c994ed85c226baaa67> /usr/lib/system/libsystem_notify.dylib
0x1b1e7c000 - 0x1b2068fff CoreDuet arm64e <fa494103007535ffaf8db7946a0cbd81> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet
0x1b2069000 - 0x1b21b0fff Montreal arm64e <e0c5c3f9e5183e11b8dbae13e50d9427> /System/Library/PrivateFrameworks/Montreal.framework/Montreal
0x1b21b1000 - 0x1b2295fff NLP arm64e <6cfaf73f401832b9934588016397b4ef> /System/Library/PrivateFrameworks/NLP.framework/NLP
0x1b2296000 - 0x1b22b4fff CellularPlanManager arm64e <1f34c041ff2830dd89b843d5f48b5692> /System/Library/PrivateFrameworks/CellularPlanManager.framework/CellularPlanManager
0x1b22b5000 - 0x1b22f2fff AppSupport arm64e <03e2fc117ef5341d9735507cb71b3538> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
0x1b22f3000 - 0x1b27dffff libnetwork.dylib arm64e <6b86071a0dfc3efda798615ec6a7d591> /usr/lib/libnetwork.dylib
0x1b27e0000 - 0x1b28f1fff ManagedConfiguration arm64e <f4637fe9b226391198a9f0290ab1eb50> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
0x1b28f2000 - 0x1b291cfff CoreServicesStore arm64e <ff17e9858eb83bc6824bb8131c371be7> /System/Library/PrivateFrameworks/CoreServicesStore.framework/CoreServicesStore
0x1b291d000 - 0x1b293efff UserManagement arm64e <8b4f8dbce8343e03bcc102929006d637> /System/Library/PrivateFrameworks/UserManagement.framework/UserManagement
0x1b293f000 - 0x1b2bf4fff CoreML arm64e <5aea650251f73456aed6ba12f4301d8d> /System/Library/Frameworks/CoreML.framework/CoreML
0x1b2bf5000 - 0x1b2c0bfff ProtocolBuffer arm64e <c60dfe3cf75231139412a12e00e8ec05> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
0x1b2c0c000 - 0x1b2c26fff CommonUtilities arm64e <40f314982784388a9cbbfbea228c2e8d> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
0x1b2c27000 - 0x1b2c27fff libenergytrace.dylib arm64e <f9b52a49c615387e865a6086b7655272> /usr/lib/libenergytrace.dylib
0x1b2c28000 - 0x1b2c5ffff RunningBoardServices arm64e <a65f835dabc1363288e863203cf93c28> /System/Library/PrivateFrameworks/RunningBoardServices.framework/RunningBoardServices
0x1b2c60000 - 0x1b2ce0fff BaseBoard arm64e <3e67a38cf55d3f2886aad33bbe0ed907> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
0x1b2ce1000 - 0x1b3232fff SiriTTS arm64e <89c59a7ed45a30b5a81ca87b083cc6e1> /System/Library/PrivateFrameworks/SiriTTS.framework/SiriTTS
0x1b3233000 - 0x1b32a7fff CoreLocation arm64e <d40048141baf3c69bf1e227b15723610> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
0x1b32b5000 - 0x1b330bfff Accounts arm64e <425be5d5f1da30abb4be823277e41c12> /System/Library/Frameworks/Accounts.framework/Accounts
0x1b330c000 - 0x1b331cfff SharedWebCredentials arm64e <9443b8cd9eaf3c6597debae0e604ec80> /System/Library/PrivateFrameworks/SharedWebCredentials.framework/SharedWebCredentials
0x1b331d000 - 0x1b367efff CFNetwork arm64e <1362d01cc0163c49b6176b19826ab3b2> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
0x1b367f000 - 0x1b3760fff UIFoundation arm64e <af91401f121132409a212132f692b587> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
0x1b3761000 - 0x1b48d4fff UIKitCore arm64e <66c0bdeb71cf3148af27a5b055fad9a5> /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
0x1b48d5000 - 0x1b48e3fff AssertionServices arm64e <1e2c2c8f0b393dcabe859d1b50ca40fa> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
0x1b48e4000 - 0x1b49bdfff CoreTelephony arm64e <7bb1669074b831ea80db40cd6208e4f8> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
0x1b49be000 - 0x1b49c3fff AggregateDictionary arm64e <718ba31eaa1b3f4b9a4f98c895135176> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
0x1b49c4000 - 0x1b49dafff libsystem_asl.dylib arm64e <b2e939627b9f37e48c1273e3c5c767a1> /usr/lib/system/libsystem_asl.dylib
0x1b49db000 - 0x1b4a56fff CloudDocs arm64e <9eab01d404ad3066825cfd683ef75dce> /System/Library/PrivateFrameworks/CloudDocs.framework/CloudDocs
0x1b4a57000 - 0x1b4d8afff CoreData arm64e <98f0309430ec39d3b10dec7866aefedd> /System/Library/Frameworks/CoreData.framework/CoreData
0x1b4d8b000 - 0x1b4fb5fff Vision arm64e <60855bb208073da0847d8120f16e9de5> /System/Library/Frameworks/Vision.framework/Vision
0x1b4fb6000 - 0x1b4ffafff PhotoFoundation arm64e <c03e15fef4f13921a241a0c7de746ad5> /System/Library/PrivateFrameworks/PhotoFoundation.framework/PhotoFoundation
0x1b4ffb000 - 0x1b5026fff BoardServices arm64e <8c3e3899c16130e5969692c38f72ce21> /System/Library/PrivateFrameworks/BoardServices.framework/BoardServices
0x1b5027000 - 0x1b50defff libboringssl.dylib arm64e <c853ad30336e391fae8a4b573aa66076> /usr/lib/libboringssl.dylib
....
You have a deadlock, but i cannot tell you what is the root cause
your com.apple.main-thread
entered dyld3::dlopen_internal (and acquired a lock #1 there)
entered __CFLookupCoreServicesInternalFunction (and stuck trying to acquire a lock #2 there)
...meanwhile...
your com.apple.NSURLSession-work
entered __CFLookupCoreServicesInternalFunction (and acquired a lock #2 there)
entered dyld3::dlopen_internal (and stuck trying to acquire a lock #1 there)

Identifying Crash in Symbolized Crash Report

I've had a crash within my native iOS App (which runs fine on simulator, only error on a device) I've been unable to identify the issue. The crash happens while the splash screen is shown, before the initial view controller is shown. Here are the 3 steps I've done thus far:
1) turned on all exception breakpoints. By doing so, the exception shows up in main.m. Here is the code:
// main.m
#import <UIKit/UIKit.h>
#import "idcAppDelegate.h"
int main(int argc, char * argv[])
{
#autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([idcAppDelegate class]));
}
}
2) looked at the crash log and symboized it. Here is the output. The only view controller shown in line 5 of crash report (below) is EngineeringViewController.m with line #741 of my code. I checked that code and included that in #3 below. Also, as a test I put a breakpoint prior to that line of code being called, and it never reached that code. Any insight to the issues would be appreciated.
Incident Identifier: 1C053572-AFE5-4EB6-A95C-9E4459B860A7
CrashReporter Key: f97ebe907a31ab39c017e93a637e9e195e90d8f4
Hardware Model: iPhone5,1
Process: idcdoor [267]
Path: /private/var/mobile/Containers/Bundle/Application/8ED83A36-2A92-4601-9265- 392A9E97E89B/idcdoor.app/idcdoor
Identifier: com.zen.idcdoor
Version: 1.0 (1.0)
Code Type: ARM (Native)
Parent Process: launchd [1]
Date/Time: 2014-11-01 10:26:23.652 -0500
Launch Time: 2014-11-01 10:26:20.975 -0500
OS Version: iOS 8.1 (12B411)
Report Version: 105
Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Subtype: KERN_INVALID_ADDRESS at 0x00000014
Triggered by Thread: 0
Thread 0 name: Dispatch queue: com.apple.main-thread
Thread 0 Crashed:
0 libsystem_c.dylib 0x354877d4 strlen + 28
1 CoreFoundation 0x2771440c __CFStringAppendFormatCore + 7052
2 CoreFoundation 0x2771285c _CFStringCreateWithFormatAndArgumentsAux2 + 76
3 Foundation 0x2837f86e -[NSPlaceholderString initWithFormat:locale:arguments:] + 134
4 Foundation 0x2837f770 +[NSString stringWithFormat:] + 56
5 idcdoor 0x000a8e48 -[EngineeringViewController pickerView:numberOfRowsInComponent:] (EngineeringViewController.m:741)
6 UIKit 0x2accc60a -[UISectionRowData refreshWithSection:tableView:tableViewRowData:] + 2546
7 UIKit 0x2accbb54 -[UITableViewRowData rectForFooterInSection:heightCanBeGuessed:] + 324
8 UIKit 0x2accb994 -[UITableViewRowData heightForTable] + 52
9 UIKit 0x2accb7cc -[UITableView _updateContentSize] + 340
10 UIKit 0x2acd151e -[UITableView didMoveToWindow] + 66
11 UIKit 0x2abfbe50 -[UIView(Internal) _didMoveFromWindow:toWindow:] + 1308
12 UIKit 0x2ac1ac96 -[UIScrollView _didMoveFromWindow:toWindow:] + 46
13 UIKit 0x2abfbbc0 -[UIView(Internal) _didMoveFromWindow:toWindow:] + 652
14 UIKit 0x2abfbbc0 -[UIView(Internal) _didMoveFromWindow:toWindow:] + 652
15 UIKit 0x2abfb4d4 __45-[UIView(Hierarchy) _postMovedFromSuperview:]_block_invoke + 108
16 UIKit 0x2abfb3e8 -[UIView(Hierarchy) _postMovedFromSuperview:] + 424
17 UIKit 0x2ac0584a -[UIView(Internal) _addSubview:positioned:relativeTo:] + 1458
18 UIKit 0x2ac0528e -[UIView(Hierarchy) addSubview:] + 26
19 UIKit 0x2ae58cb4 -[UIPickerView layoutSubviews] + 3212
20 UIKit 0x2ae5a322 -[UIPickerView selectedRowInComponent:] + 42
21 UIKit 0x2ae56bfc -[UIPickerView _updateSelectedRows] + 124
22 UIKit 0x2ae56d0a -[UIPickerView didMoveToWindow] + 94
23 UIKit 0x2abfbe50 -[UIView(Internal) _didMoveFromWindow:toWindow:] + 1308
24 UIKit 0x2abfbbc0 -[UIView(Internal) _didMoveFromWindow:toWindow:] + 652
25 UIKit 0x2abfbbc0 -[UIView(Internal) _didMoveFromWindow:toWindow:] + 652
26 UIKit 0x2abfbbc0 -[UIView(Internal) _didMoveFromWindow:toWindow:] + 652
27 UIKit 0x2abfb4d4 __45-[UIView(Hierarchy) _postMovedFromSuperview:]_block_invoke + 108
28 UIKit 0x2abfb3e8 -[UIView(Hierarchy) _postMovedFromSuperview:] + 424
29 UIKit 0x2ac0584a -[UIView(Internal) _addSubview:positioned:relativeTo:] + 1458
30 UIKit 0x2ac0528e -[UIView(Hierarchy) addSubview:] + 26
31 UIKit 0x2acb142a -[UINavigationTransitionView transition:fromView:toView:] + 474
32 UIKit 0x2acb1246 -[UINavigationTransitionView transition:toView:] + 22
33 UIKit 0x2aca8af2 -[UINavigationController _startTransition:fromViewController:toViewController:] + 2282
34 UIKit 0x2aca7f7e -[UINavigationController _startDeferredTransitionIfNeeded:] + 574
35 UIKit 0x2aca7ce8 -[UINavigationController __viewWillLayoutSubviews] + 40
36 UIKit 0x2aca7c7c -[UILayoutContainerView layoutSubviews] + 180
37 UIKit 0x2abfc4d2 -[UIView(CALayerDelegate) layoutSublayersOfLayer:] + 510
38 QuartzCore 0x2a624a08 -[CALayer layoutSublayers] + 132
39 QuartzCore 0x2a6203e0 CA::Layer::layout_if_needed(CA::Transaction*) + 356
40 QuartzCore 0x2a620268 CA::Layer::layout_and_display_if_needed(CA::Transaction*) + 12
41 QuartzCore 0x2a61fc4c CA::Context::commit_transaction(CA::Transaction*) + 220
42 QuartzCore 0x2a61fa50 CA::Transaction::commit() + 320
43 UIKit 0x2ae601c0 -[UIApplication _reportMainSceneUpdateFinished:] + 40
44 UIKit 0x2ae60f68 -[UIApplication _runWithMainScene:transitionContext:completion:] + 2508
45 UIKit 0x2ae6b374 __84-[UIApplication _handleApplicationActivationWithScene:transitionContext:completion:]_block_invoke + 32
46 UIKit 0x2ae5f384 -[UIApplication workspaceDidEndTransaction:] + 128
47 FrontBoardServices 0x2decc0e6 __31-[FBSSerialQueue performAsync:]_block_invoke + 10
48 CoreFoundation 0x2770639a __CFRUNLOOP_IS_CALLING_OUT_TO_A_BLOCK__ + 10
49 CoreFoundation 0x2770565c __CFRunLoopDoBlocks + 212
50 CoreFoundation 0x27704196 __CFRunLoopRun + 1710
51 CoreFoundation 0x2765220c CFRunLoopRunSpecific + 472
52 CoreFoundation 0x2765201e CFRunLoopRunInMode + 102
53 UIKit 0x2ac633ea -[UIApplication _run] + 554
54 UIKit 0x2ac5e1cc UIApplicationMain + 1436
55 idcdoor 0x000af77e main (main.m:17)
56 libdyld.dylib 0x3546aaac start + 0
Thread 1 name: Dispatch queue: com.apple.libdispatch-manager
Thread 1:
0 libsystem_kernel.dylib 0x3551d2a0 kevent64 + 24
1 libdispatch.dylib 0x354569fc _dispatch_mgr_invoke + 276
2 libdispatch.dylib 0x3544c20e _dispatch_mgr_thread + 34
Thread 2:
0 libsystem_kernel.dylib 0x355319cc __workq_kernreturn + 8
1 libsystem_pthread.dylib 0x355abea8 _pthread_wqthread + 788
2 libsystem_pthread.dylib 0x355abb80 start_wqthread + 4
Thread 3:
0 libsystem_kernel.dylib 0x355319cc __workq_kernreturn + 8
1 libsystem_pthread.dylib 0x355abea8 _pthread_wqthread + 788
2 libsystem_pthread.dylib 0x355abb80 start_wqthread + 4
Thread 4:
0 libsystem_kernel.dylib 0x355319cc __workq_kernreturn + 8
1 libsystem_pthread.dylib 0x355abea8 _pthread_wqthread + 788
2 libsystem_pthread.dylib 0x355abb80 start_wqthread + 4
Thread 0 crashed with ARM Thread State (32-bit):
r0: 0x00000014 r1: 0x00000014 r2: 0x00000000 r3: 0x01010101
r4: 0x00000000 r5: 0x277ab8d9 r6: 0x001ca2f8 r7: 0x001ca2f0
r8: 0x001ca884 r9: 0x00000001 r10: 0x001ca434 r11: 0x277ab8d9
ip: 0x00000018 sp: 0x001ca2f0 lr: 0x27714411 pc: 0x354877d4
cpsr: 0x60000010
Binary Images:
0x9e000 - 0xbdfff idcdoor armv7 <3a3e81a535e33b749617ea74b35051a4> /var/mobile/Containers/Bundle/Application/8ED83A36-2A92-4601-9265-392A9E97E89B/idcdoor.app/idcdoor
0x264f000 - 0x265afff GAXClient armv7s <2a03ff3e6ca83b138ffe5e1436d3a686> /System/Library/AccessibilityBundles/GAXClient.bundle/GAXClient
0x1fee5000 - 0x1ff08fff dyld armv7s <b01d37db5b0d3a2ea1ccf17afc40a896> /usr/lib/dyld
0x25d80000 - 0x25d88fff AccessibilitySettingsLoader armv7s <46e9b9bae13d3590971aca226c70bb90> /System/Library/AccessibilityBundles/AccessibilitySettingsLoader.bundle/AccessibilitySettingsLoader
0x25f48000 - 0x25f63fff libJapaneseConverter.dylib armv7s <708b951369ca3c6ca3c04cff645cb4af> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
0x25f64000 - 0x25f85fff libKoreanConverter.dylib armv7s <12d4496cb7e234ef9248a8133281466f> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
0x25f8d000 - 0x25f9bfff libSimplifiedChineseConverter.dylib armv7s <710dea62fe2532bd833dc37458e8df31> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
0x25f9e000 - 0x25fb0fff libTraditionalChineseConverter.dylib armv7s <b671c9d6a27e3125ab87d2b889e52885> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
0x261d6000 - 0x26342fff AVFoundation armv7s <20cb3fb302c83ede8cc708d8dea2b480> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
0x26343000 - 0x263a1fff libAVFAudio.dylib armv7s <07753e16a2e136e2bbe7937c1d2833f6> /System/Library/Frameworks/AVFoundation.framework/libAVFAudio.dylib
0x263db000 - 0x263dbfff Accelerate armv7s <3c10ee15d8363fa58b719f2abca91b06> /System/Library/Frameworks/Accelerate.framework/Accelerate
0x263ec000 - 0x26607fff vImage armv7s <3358de09601333a2881365e5c74c681e> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
0x26608000 - 0x266eefff libBLAS.dylib armv7s <b46b7fd3985f371ca26b10f268965e63> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
0x266ef000 - 0x269b3fff libLAPACK.dylib armv7s <eb228c255d9e349391cd6b227a9d2744> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
0x269b4000 - 0x269c5fff libLinearAlgebra.dylib armv7s <d2e989bc1bad320b918c37d3642db4b6> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
0x269c6000 - 0x26a42fff libvDSP.dylib armv7s <07cf0625bd813336920eb5b62f99be06> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
0x26a43000 - 0x26a55fff libvMisc.dylib armv7s <07997e6e46fa35a18c6ddacf62f326d8> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
0x26a56000 - 0x26a56fff vecLib armv7s <108b763f155130828fa123813e3ff5f5> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
0x26a57000 - 0x26a7dfff Accounts armv7s <7540bbbab44638cbbfc6f8e660b882e5> /System/Library/Frameworks/Accounts.framework/Accounts
0x26a7f000 - 0x26aeffff AddressBook armv7s <f14b87a5995235f7b4758b9177eacfff> /System/Library/Frameworks/AddressBook.framework/AddressBook
0x26af0000 - 0x26c14fff AddressBookUI armv7s <4cbc3a35503334398504bec12f184406> /System/Library/Frameworks/AddressBookUI.framework/AddressBookUI
0x26dad000 - 0x27020fff AudioToolbox armv7s <6af7bb73fc8a3820aaeddf4be11d76d1> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
0x2718b000 - 0x27313fff CFNetwork armv7s <447c648544f63bad945945978a4420cc> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
0x27314000 - 0x27395fff CloudKit armv7s <a36362766d2d34a89f0375dc3af0b266> /System/Library/Frameworks/CloudKit.framework/CloudKit
0x27396000 - 0x273f5fff CoreAudio armv7s <fc17e188a69f32b8b7a5eb739e71628a> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
0x27410000 - 0x2742dfff CoreBluetooth armv7s <7013619ef098351e9327893736f9ac75> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
0x2742e000 - 0x27639fff CoreData armv7s <c9df4ab3eb933030a3cec50334b917ce> /System/Library/Frameworks/CoreData.framework/CoreData
0x2763a000 - 0x27966fff CoreFoundation armv7s <88f8b217c0ee3ea99fc535279a274e51> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
0x27967000 - 0x27a91fff CoreGraphics armv7s <89608951c9173d66ba6318cfe83636cd> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
0x27ad1000 - 0x27ad3fff libCGXType.A.dylib armv7s <e655cd9db7ee35779038050110716bdf> /System/Library/Frameworks/CoreGraphics.framework/Resources/libCGXType.A.dylib
0x27ad4000 - 0x27adefff libCMSBuiltin.A.dylib armv7s <edc7a2d9b3ec34599184c14a1558e306> /System/Library/Frameworks/CoreGraphics.framework/Resources/libCMSBuiltin.A.dylib
0x27cc6000 - 0x27ce1fff libRIP.A.dylib armv7s <7245d28cd0683999ba311e1f9c44eaf0> /System/Library/Frameworks/CoreGraphics.framework/Resources/libRIP.A.dylib
0x27ce2000 - 0x27df0fff CoreImage armv7s <5c9817ffa8c939878f34e92794fe01d0> /System/Library/Frameworks/CoreImage.framework/CoreImage
0x27df1000 - 0x27e48fff CoreLocation armv7s <a25b4e5cd9db3552b17f6f933c268b4e> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
0x27e7a000 - 0x27f14fff CoreMedia armv7s <c0207b0eb8a6372c82765e3f9aaae9c2> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
0x27f15000 - 0x27fd4fff CoreMotion armv7s <eaf2bec24a9a339b8a72e66a50f84195> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
0x27fd5000 - 0x28033fff CoreTelephony armv7s <d387fea5262f3a1a9b915eda86a9c521> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
0x28034000 - 0x280fbfff CoreText armv7s <27a6c9f02e0c3fcdb25aa629dbac8420> /System/Library/Frameworks/CoreText.framework/CoreText
0x280fc000 - 0x28111fff CoreVideo armv7s <710cbdb8798d3e7e862a5c77ebb278b4> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
0x28112000 - 0x28207fff EventKit armv7s <f5e8d9857bca3d30a82884f74acccdd9> /System/Library/Frameworks/EventKit.framework/EventKit
0x2837e000 - 0x28580fff Foundation armv7s <dae281def68e3062826ad439cc878f35> /System/Library/Frameworks/Foundation.framework/Foundation
0x285ad000 - 0x285ccfff GSS armv7s <3d6d5fcf16673331b532dc80bc9cb004> /System/Library/Frameworks/GSS.framework/GSS
0x28660000 - 0x286b6fff IOKit armv7s <694427785d6b3b158555dbb2de06ba5d> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x286b7000 - 0x288f9fff ImageIO armv7s <7805efbe771f3abe8eb78f8a11e43510> /System/Library/Frameworks/ImageIO.framework/ImageIO
0x288fa000 - 0x28c48fff JavaScriptCore armv7s <8efe7fde7fc334d3b4e7154fd1ad7934> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
0x28f25000 - 0x28f2dfff MediaAccessibility armv7s <39f640b059a43b609c3f03d2c53ccca3> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
0x28f2e000 - 0x29107fff MediaPlayer armv7s <c97f5d8967cd331687edef49d2e330ea> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
0x29108000 - 0x29481fff MediaToolbox armv7s <61a8287d7db23902ace54438be5d01dd> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
0x29482000 - 0x29540fff MessageUI armv7s <4d650e3067b53974b00534275f6f4e90> /System/Library/Frameworks/MessageUI.framework/MessageUI
0x29541000 - 0x295adfff Metal armv7s <55c278f571e43337a9f50f33fd7a0e19> /System/Library/Frameworks/Metal.framework/Metal
0x295ae000 - 0x2963efff MobileCoreServices armv7s <d309a94eb41f3828888fea191d26c2b4> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
0x2a11a000 - 0x2a122fff OpenGLES armv7s <da72e0ef6bad373e9f10a34e7e8e69c4> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
0x2a124000 - 0x2a124fff libCVMSPluginSupport.dylib armv7s <19d9172837f5361d938ae1757caf9c37> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
0x2a125000 - 0x2a127fff libCoreFSCache.dylib armv7s <ecc01c4cd2aa3cfabe2cb655e944d675> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
0x2a128000 - 0x2a12bfff libCoreVMClient.dylib armv7s <f9bbda54797d3b119f02b904b5b616b8> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
0x2a12c000 - 0x2a134fff libGFXShared.dylib armv7s <a4f8148c427c3a1da2d6e4f7d8f44db0> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
0x2a135000 - 0x2a177fff libGLImage.dylib armv7s <25bf18582842387aadbef55023603f1b> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
0x2a618000 - 0x2a76afff QuartzCore armv7s <f279312e24013b3facfd0701a8f856f2> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
0x2a76b000 - 0x2a7befff QuickLook armv7s <4faa07b11c763d2e8535a9eeae067d73> /System/Library/Frameworks/QuickLook.framework/QuickLook
0x2a9ad000 - 0x2a9edfff Security armv7s <de3cef25d1443557af5def374133b390> /System/Library/Frameworks/Security.framework/Security
0x2ab91000 - 0x2abedfff SystemConfiguration armv7s <f0007f16cef530dcb1681ab29db8e311> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
0x2abf0000 - 0x2b491fff UIKit armv7s <30f3605a26bc3155a5dbffdf1f30d2ab> /System/Library/Frameworks/UIKit.framework/UIKit
0x2b492000 - 0x2b4f9fff VideoToolbox armv7s <2a114ceb99013b3bb24c7d5544f0a575> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
0x2b4fa000 - 0x2b6dffff WebKit armv7s <adbe79a7e1fe3e4a96388bbead166d3f> /System/Library/Frameworks/WebKit.framework/WebKit
0x2ba00000 - 0x2ba0bfff AOSNotification armv7s <9692b7bd225438e7b7832f56454a2857> /System/Library/PrivateFrameworks/AOSNotification.framework/AOSNotification
0x2bacf000 - 0x2bad6fff AccessibilityUI armv7s <5b632cc5cff034f9a3e1e533421dc2f1> /System/Library/PrivateFrameworks/Accessibility.framework/Frameworks/AccessibilityUI.framework/AccessibilityUI
0x2baee000 - 0x2baf1fff AccessibilityUIUtilities armv7s <e7c5cd1c1c223fad9e1b1d9471c1044a> /System/Library/PrivateFrameworks/Accessibility.framework/Frameworks/AccessibilityUIUtilities.framework/AccessibilityUIUtilities
0x2baf4000 - 0x2baf7fff ZoomServices armv7s <734b9fb4cf9b30f79573a25e471d55dd> /System/Library/PrivateFrameworks/Accessibility.framework/Frameworks/ZoomServices.framework/ZoomServices
....
3) here is code from EngineeringViewController.m
- (NSInteger)pickerView:(UIPickerView *)pickerView numberOfRowsInComponent:(NSInteger)component {
if([pickerView isEqual: _pickerPreferredId]){
return sizeof(Preffered_ID);
}else if([pickerView isEqual: _pickerDrum]){
int drumCount = 0;
if(doorLiftSelection == 0){
for (int i = 0; i < sizeof Select_Drum[10]; i++){
//line 741
if([[NSString stringWithFormat: #"%s",Select_Drum[i][10]] isEqualToString:#"Standard"]){
drumCount++;
}
}
}
At the time of the crash, Select_Drum[i][10] is not a valid C string.
CF is trying to create a CFString/NSString from it and is crashing when trying to strlen() on the string to determine how much memory it needs to allocate for the resulting CFString.
As for why it's not a valid C string, you'll need to look at it with the debugger, but this line looks VERY suspect:
for (int i = 0; i < sizeof Select_Drum[10]; i++)
I don't think that does what you think it does.

Apple reject app "We found that your app crashed on iPhone 5s running iOS 7.1.2 "

Once again apple has rejected my app,their say that there is a crash testing on iOS 7.1.2 with iPhone 5s device, below you will find the crash log, can anyone give me help? I do not understand where the problem is ... Help me.
Thanks for your time and your cooperation.
Regards
Francesco M.
Crash log report and message from Apple
We found that your app crashed on iPhone 5s running iOS 7.1.2, which is not in compliance with the App Store Review Guidelines.
Specifically, tapping any button leads the app to crash.
This occurred when your app was used:
Offline
On Wi-Fi
On cellular networkWe
This is the crash report:
Incident Identifier: 3C215575-D43B-4B9F-8162-321AD61A5D21
CrashReporter Key: c746f175d2b7240a57e3e86ae8589dfcb0d7270f
Hardware Model: xxx
Process: BlogNews [18200]
Path: /var/mobile/Applications/B397886B-5C8A-4043-8EE3-C01B4A179681/BlogNews.app/BlogNews
Identifier: com.FrancescoMaino.BlogNews
Version: 1.0 (1.0)
Code Type: ARM (Native)
Parent Process: launchd [1]
Date/Time: 2014-09-09 16:25:08.478 -0700
OS Version: iOS 7.1.2 (11D257)
Report Version: 104
Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Triggered by Thread: 0
Last Exception Backtrace:
(0x2df48ecb 0x38b22ce7 0x2df4c7f7 0x2df4b0f7 0x2de9a058 0x2e929117 0x2df13f0f 0x2df13b2b 0x2df11eb3 0x2de7c729 0x2de7c50b 0x32db56d3 0x307dd871 0x65ce7 0x65ca0)
Thread 0 name: Dispatch queue: com.apple.main-thread
Thread 0 Crashed:
0 libsystem_kernel.dylib 0x390d71f0 __pthread_kill + 8
1 libsystem_pthread.dylib 0x3913f7b3 pthread_kill + 55
2 libsystem_c.dylib 0x39087ff5 abort + 73
3 libc++abi.dylib 0x384d698b abort_message + 71
4 libc++abi.dylib 0x384ef6e3 default_terminate_handler() + 251
5 libobjc.A.dylib 0x38b22f7b _objc_terminate() + 191
6 libc++abi.dylib 0x384ed1b1 std::__terminate(void (*)()) + 77
7 libc++abi.dylib 0x384ecd13 __cxa_rethrow + 99
8 libobjc.A.dylib 0x38b22e2b objc_exception_rethrow + 39
9 CoreFoundation 0x2de7c79b CFRunLoopRunSpecific + 639
10 CoreFoundation 0x2de7c507 CFRunLoopRunInMode + 103
11 GraphicsServices 0x32db56cf GSEventRunModal + 135
12 UIKit 0x307dd86d UIApplicationMain + 1133
13 BlogNews 0x00065ce3 0x61000 + 19683
14 BlogNews 0x00065c9c 0x61000 + 19612
Thread 1 name: Dispatch queue: com.apple.libdispatch-manager
Thread 1:
0 libsystem_kernel.dylib 0x390c4804 kevent64 + 24
1 libdispatch.dylib 0x39013051 _dispatch_mgr_invoke + 229
2 libdispatch.dylib 0x3900d2df _dispatch_mgr_thread + 35
Thread 2:
0 libsystem_kernel.dylib 0x390d7c70 __workq_kernreturn + 8
1 libsystem_pthread.dylib 0x3913cc1f _pthread_wqthread + 307
2 libsystem_pthread.dylib 0x3913cad8 start_wqthread + 4
Thread 3:
0 libsystem_kernel.dylib 0x390d7c70 __workq_kernreturn + 8
1 libsystem_pthread.dylib 0x3913cc1f _pthread_wqthread + 307
2 libsystem_pthread.dylib 0x3913cad8 start_wqthread + 4
Thread 4 name: WebThread
Thread 4:
0 JavaScriptCore 0x2eec3b59 JSC::Lexer<unsigned char>::lex(JSC::JSTokenData*, JSC::JSTokenLocation*, unsigned int, bool) + 893
1 JavaScriptCore 0x2eeda31f JSC::ASTBuilder::Statement JSC::Parser<JSC::Lexer<unsigned char> >::parseVarDeclaration<JSC::ASTBuilder>(JSC::ASTBuilder&) + 159
2 JavaScriptCore 0x2eec74d5 JSC::ASTBuilder::Statement JSC::Parser<JSC::Lexer<unsigned char> >::parseStatement<JSC::ASTBuilder>(JSC::ASTBuilder&, JSC::Identifier const*&, unsigned int*) + 845
3 JavaScriptCore 0x2eec7481 JSC::ASTBuilder::Statement JSC::Parser<JSC::Lexer<unsigned char> >::parseStatement<JSC::ASTBuilder>(JSC::ASTBuilder&, JSC::Identifier const*&, unsigned int*) + 761
4 JavaScriptCore 0x2eec7023 JSC::ASTBuilder::SourceElements JSC::Parser<JSC::Lexer<unsigned char> >::parseSourceElements<(JSC::SourceElementsMode)0, JSC::ASTBuilder>(JSC::ASTBuilder&) + 131
5 JavaScriptCore 0x2eec6c8d JSC::Parser<JSC::Lexer<unsigned char> >::parseInner() + 201
6 JavaScriptCore 0x2eefbe7d WTF::PassRefPtr<JSC::FunctionBodyNode> JSC::Parser<JSC::Lexer<unsigned char> >::parse<JSC::FunctionBodyNode>(JSC::ParserError&) + 73
7 JavaScriptCore 0x2eefbde7 WTF::PassRefPtr<JSC::FunctionBodyNode> JSC::parse<JSC::FunctionBodyNode>(JSC::VM*, JSC::SourceCode const&, JSC::FunctionParameters*, JSC::Identifier const&, JSC::JSParserStrictness, JSC::JSParserMode, JSC::ParserError&) + 95
8 JavaScriptCore 0x2eefbbc7 JSC::UnlinkedFunctionExecutable::codeBlockFor(JSC::VM&, JSC::JSScope*, JSC::SourceCode const&, JSC::CodeSpecializationKind, JSC::DebuggerMode, JSC::ProfilerMode, JSC::ParserError&) + 79
9 JavaScriptCore 0x2eefba93 JSC::FunctionExecutable::produceCodeBlockFor(JSC::JSScope*, JSC::CodeSpecializationKind, JSC::JSObject*&) + 195
10 JavaScriptCore 0x2ef007ff JSC::FunctionExecutable::compileForCallInternal(JSC::ExecState*, JSC::JSScope*, JSC::JITCode::JITType, unsigned int) + 43
11 JavaScriptCore 0x2eefb7eb JSC::LLInt::setUpCall(JSC::ExecState*, JSC::Instruction*, JSC::CodeSpecializationKind, JSC::JSValue, JSC::LLIntCallLinkInfo*) + 623
12 JavaScriptCore 0x2eef25cb llint_slow_path_call + 119
13 JavaScriptCore 0x2eef6f11 llint_op_call + 197
14 JavaScriptCore 0x2ef0054b JSC::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 67
15 JavaScriptCore 0x2efd23cf JSC::functionProtoFuncApply(JSC::ExecState*) + 703
16 JavaScriptCore 0x2eef7131 llint_native_call_trampoline + 63
17 JavaScriptCore 0x2ef0054b JSC::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 67
18 JavaScriptCore 0x2efd23cf JSC::functionProtoFuncApply(JSC::ExecState*) + 703
19 JavaScriptCore 0x2eef7131 llint_native_call_trampoline + 63
20 JavaScriptCore 0x2ef0054b JSC::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 67
21 JavaScriptCore 0x2efd23cf JSC::functionProtoFuncApply(JSC::ExecState*) + 703
22 JavaScriptCore 0x2eef7131 llint_native_call_trampoline + 63
23 JavaScriptCore 0x2ef0054b JSC::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 67
24 JavaScriptCore 0x2efdd1ed JSC::boundFunctionCall(JSC::ExecState*) + 349
25 JavaScriptCore 0x2eef7131 llint_native_call_trampoline + 63
26 JavaScriptCore 0x2ef0054b JSC::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 67
27 WebCore 0x3638efa3 WebCore::JSMainThreadExecState::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 143
28 WebCore 0x365785db WebCore::JSEventListener::handleEvent(WebCore::ScriptExecutionContext*, WebCore::Event*) + 515
29 WebCore 0x36536797 WebCore::EventTarget::fireEventListeners(WebCore::Event*, WebCore::EventTargetData*, WTF::Vector<WebCore::RegisteredEventListener, 1ul, WTF::CrashOnOverflow>&) + 483
30 WebCore 0x364356d1 WebCore::EventTarget::fireEventListeners(WebCore::Event*) + 181
31 WebCore 0x3643584f WebCore::EventContext::handleLocalEvents(WebCore::Event*) const + 59
32 WebCore 0x364353d3 WebCore::EventDispatcher::dispatch() + 563
33 WebCore 0x3643519b WebCore::EventDispatchMediator::dispatchEvent(WebCore::EventDispatcher*) const + 7
34 WebCore 0x36434a61 WebCore::EventDispatcher::dispatchEvent(WebCore::Node*, WTF::PassRefPtr<WebCore::EventDispatchMediator>) + 153
35 WebCore 0x36434921 WebCore::Node::dispatchEvent(WTF::PassRefPtr<WebCore::Event>) + 97
36 WebCore 0x36586237 non-virtual thunk to WebCore::HTMLScriptElement::dispatchLoadEvent() + 51
37 WebCore 0x3657f609 WebCore::ScriptElement::execute(WebCore::CachedScript*) + 217
38 WebCore 0x3657f49d WebCore::ScriptRunner::timerFired(WebCore::Timer<WebCore::ScriptRunner>*) + 309
39 WebCore 0x3638d8bd WebCore::ThreadTimers::sharedTimerFiredInternal() + 133
40 WebCore 0x3638d80f WebCore::timerFired(__CFRunLoopTimer*, void*) + 23
41 CoreFoundation 0x2df13f0d __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 13
42 CoreFoundation 0x2df13b27 __CFRunLoopDoTimer + 791
43 CoreFoundation 0x2df11eaf __CFRunLoopRun + 1215
44 CoreFoundation 0x2de7c725 CFRunLoopRunSpecific + 521
45 CoreFoundation 0x2de7c507 CFRunLoopRunInMode + 103
46 WebCore 0x3641ac71 RunWebThread(void*) + 417
47 libsystem_pthread.dylib 0x3913e957 _pthread_body + 139
48 libsystem_pthread.dylib 0x3913e8c7 _pthread_start + 99
49 libsystem_pthread.dylib 0x3913cae4 thread_start + 4
Thread 5 name: com.apple.NSURLConnectionLoader
Thread 5:
0 libsystem_kernel.dylib 0x390c4a50 mach_msg_trap + 20
1 libsystem_kernel.dylib 0x390c4849 mach_msg + 37
2 CoreFoundation 0x2df135e5 __CFRunLoopServiceMachPort + 153
3 CoreFoundation 0x2df11d05 __CFRunLoopRun + 789
4 CoreFoundation 0x2de7c725 CFRunLoopRunSpecific + 521
5 CoreFoundation 0x2de7c507 CFRunLoopRunInMode + 103
6 Foundation 0x2e8bd23d +[NSURLConnection(Loader) _resourceLoadLoop:] + 317
7 Foundation 0x2e932a0b __NSThread__main__ + 1059
8 libsystem_pthread.dylib 0x3913e957 _pthread_body + 139
9 libsystem_pthread.dylib 0x3913e8c7 _pthread_start + 99
10 libsystem_pthread.dylib 0x3913cae4 thread_start + 4
Thread 6:
0 libsystem_kernel.dylib 0x390d7c70 __workq_kernreturn + 8
1 libsystem_pthread.dylib 0x3913cc1f _pthread_wqthread + 307
2 libsystem_pthread.dylib 0x3913cad8 start_wqthread + 4
Thread 7:
0 libsystem_kernel.dylib 0x390d7c70 __workq_kernreturn + 8
1 libsystem_pthread.dylib 0x3913cc1f _pthread_wqthread + 307
2 libsystem_pthread.dylib 0x3913cad8 start_wqthread + 4
Thread 8:
0 libsystem_kernel.dylib 0x390d7c70 __workq_kernreturn + 8
1 libsystem_pthread.dylib 0x3913cc1f _pthread_wqthread + 307
2 libsystem_pthread.dylib 0x3913cad8 start_wqthread + 4
Thread 9 name: JavaScriptCore::BlockFree
Thread 9:
0 libsystem_kernel.dylib 0x390d6f2c __psynch_cvwait + 24
1 libsystem_pthread.dylib 0x3913df63 _pthread_cond_wait + 519
2 libsystem_pthread.dylib 0x3913eddd pthread_cond_timedwait + 41
3 JavaScriptCore 0x2eeab467 WTF::ThreadCondition::timedWait(WTF::Mutex&, double) + 103
4 JavaScriptCore 0x2eeab295 JSC::BlockAllocator::blockFreeingThreadMain() + 89
5 JavaScriptCore 0x2eea8971 WTF::wtfThreadEntryPoint(void*) + 13
6 libsystem_pthread.dylib 0x3913e957 _pthread_body + 139
7 libsystem_pthread.dylib 0x3913e8c7 _pthread_start + 99
8 libsystem_pthread.dylib 0x3913cae4 thread_start + 4
Thread 10 name: JavaScriptCore::Marking
Thread 10:
0 libsystem_kernel.dylib 0x390d6f2c __psynch_cvwait + 24
1 libsystem_pthread.dylib 0x3913df63 _pthread_cond_wait + 519
2 libsystem_pthread.dylib 0x3913ed9d pthread_cond_wait + 37
3 JavaScriptCore 0x2f049cb3 JSC::GCThread::waitForNextPhase() + 75
4 JavaScriptCore 0x2f049d0d JSC::GCThread::gcThreadMain() + 49
5 JavaScriptCore 0x2eea8971 WTF::wtfThreadEntryPoint(void*) + 13
6 libsystem_pthread.dylib 0x3913e957 _pthread_body + 139
7 libsystem_pthread.dylib 0x3913e8c7 _pthread_start + 99
8 libsystem_pthread.dylib 0x3913cae4 thread_start + 4
Thread 11 name: com.apple.CFSocket.private
Thread 11:
0 libsystem_kernel.dylib 0x390d7434 __select + 20
1 CoreFoundation 0x2df174df __CFSocketManager + 483
2 libsystem_pthread.dylib 0x3913e957 _pthread_body + 139
3 libsystem_pthread.dylib 0x3913e8c7 _pthread_start + 99
4 libsystem_pthread.dylib 0x3913cae4 thread_start + 4
Thread 12 name: WebCore: CFNetwork Loader
Thread 12:
0 libsystem_kernel.dylib 0x390c4a50 mach_msg_trap + 20
1 libsystem_kernel.dylib 0x390c4849 mach_msg + 37
2 libdispatch.dylib 0x390132a1 _dispatch_mach_msg_send + 285
3 libdispatch.dylib 0x3900de11 dispatch_mach_send + 169
4 libxpc.dylib 0x3914d1a3 _xpc_connection_send_message_with_reply_f + 95
5 libxpc.dylib 0x3914d0b1 xpc_connection_send_message_with_reply_sync + 137
6 SystemConfiguration 0x3075482d __SCNetworkReachabilityServer_targetStatus + 173
7 SystemConfiguration 0x30734493 __SCNetworkReachabilityGetFlags + 307
8 SystemConfiguration 0x30734d07 SCNetworkReachabilityGetFlags + 187
9 CFNetwork 0x2db360c9 SocketStream::Reachability::schedule(dispatch_queue_s*) + 25
10 CFNetwork 0x2db35f51 SocketStream::addNetworkReachability_NoLock() + 109
11 CFNetwork 0x2db35e3f SocketStream::socketCallbackConnectLocked(SocketStreamSignalHolder*, void const*) + 263
12 CFNetwork 0x2db35cf7 SocketStream::socketCallback(__CFSocket*, unsigned long, __CFData const*, void const*) + 87
13 CFNetwork 0x2db35c67 SocketStream::_SocketCallBack_stream(__CFSocket*, unsigned long, __CFData const*, void const*, void*) + 55
14 CoreFoundation 0x2df160b7 __CFSocketPerformV0 + 371
15 CoreFoundation 0x2df13fad __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 13
16 CoreFoundation 0x2df134f9 __CFRunLoopDoSources0 + 337
17 CoreFoundation 0x2df11c63 __CFRunLoopRun + 627
18 CoreFoundation 0x2de7c725 CFRunLoopRunSpecific + 521
19 CoreFoundation 0x2de7c507 CFRunLoopRunInMode + 103
20 WebCore 0x36463c5b WebCore::runLoaderThread(void*) + 251
21 JavaScriptCore 0x2eea8971 WTF::wtfThreadEntryPoint(void*) + 13
22 libsystem_pthread.dylib 0x3913e957 _pthread_body + 139
23 libsystem_pthread.dylib 0x3913e8c7 _pthread_start + 99
24 libsystem_pthread.dylib 0x3913cae4 thread_start + 4
Thread 13 name: WebCore: LocalStorage
Thread 13:
0 libsystem_kernel.dylib 0x390d6f2c __psynch_cvwait + 24
1 libsystem_pthread.dylib 0x3913df63 _pthread_cond_wait + 519
2 libsystem_pthread.dylib 0x3913ed9d pthread_cond_wait + 37
3 JavaScriptCore 0x2eeab439 WTF::ThreadCondition::timedWait(WTF::Mutex&, double) + 57
4 WebCore 0x3654ef09 WTF::PassOwnPtr<WTF::Function<void ()> > WTF::MessageQueue<WTF::Function<void ()> >::waitForMessageFilteredWithTimeout<bool (WTF::Function<void ()>*)>(WTF::MessageQueueWaitResult&, bool (&)(WTF::Function<void ()>*), double) + 105
5 WebCore 0x3654ee8f WebCore::StorageThread::threadEntryPoint() + 163
6 JavaScriptCore 0x2eea8971 WTF::wtfThreadEntryPoint(void*) + 13
7 libsystem_pthread.dylib 0x3913e957 _pthread_body + 139
8 libsystem_pthread.dylib 0x3913e8c7 _pthread_start + 99
9 libsystem_pthread.dylib 0x3913cae4 thread_start + 4
Thread 14:
0 libsystem_kernel.dylib 0x390d7c70 __workq_kernreturn + 8
1 libsystem_pthread.dylib 0x3913cc1f _pthread_wqthread + 307
2 libsystem_pthread.dylib 0x3913cad8 start_wqthread + 4
Thread 0 crashed with ARM Thread State (32-bit):
r0: 0x00000000 r1: 0x00000000 r2: 0x00000000 r3: 0x3907aa8d
r4: 0x00000006 r5: 0x3adc418c r6: 0x00000000 r7: 0x001925a4
r8: 0x175a6b50 r9: 0x00000001 r10: 0x000770af r11: 0x00000000
ip: 0x00000148 sp: 0x00192598 lr: 0x3913f7b7 pc: 0x390d71f0
cpsr: 0x00000010
Binary Images:
0x61000 - 0x80fff BlogNews armv7s <3309d6ef509e34dba07b1ea314c62290> /var/mobile/Applications/B397886B-5C8A-4043-8EE3-C01B4A179681/BlogNews.app/BlogNews
0x2be1b000 - 0x2be3b6aa dyld armv7s <4d05d388718832c99cdd4e74aeb07d51> /usr/lib/dyld
0x2cc64000 - 0x2cd4dff5 RawCamera armv7s <403adecbf3593e8a9e81beea174f8a01> /System/Library/CoreServices/RawCamera.bundle/RawCamera
0x2cd60000 - 0x2cda5ffa AGXGLDriver armv7s <0869d4aa192634e4b4e41f78217dade2> /System/Library/Extensions/AGXGLDriver.bundle/AGXGLDriver
0x2cdb5000 - 0x2ceb7fff AVFoundation armv7s <0d19d677cf523e18accb93523ee9b269> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
0x2ceb8000 - 0x2cee0ff4 libAVFAudio.dylib armv7s <6c83d8e70b2e398f9a643de18a507401> /System/Library/Frameworks/AVFoundation.framework/libAVFAudio.dylib
0x2cee1000 - 0x2cee1fff Accelerate armv7s <58ca068138d93e988a34a0c8c34b0b11> /System/Library/Frameworks/Accelerate.framework/Accelerate
0x2ceeb000 - 0x2d0b8fda vImage armv7s <9923548d8ed23bb1b1020130b5d38dab> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
0x2d0b9000 - 0x2d19bfff libBLAS.dylib armv7s <48f7680a8fd83251ad8415bb090408c3> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
0x2d19c000 - 0x2d454fff libLAPACK.dylib armv7s <2547383dc88d3329827b4d76768915ee> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
0x2d455000 - 0x2d4c3ff7 libvDSP.dylib armv7s <83036da6f5d9308bb5fad06b2d29bac9> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
0x2d4c4000 - 0x2d4d6ff3 libvMisc.dylib armv7s <addc52a9647f3269965a750366ebed70> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
0x2d4d7000 - 0x2d4d7fff vecLib armv7s <4a647b20c3f03490aae530226350a4cd> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
0x2d4d8000 - 0x2d4f8ffe Accounts armv7s <7dbe9726167b36a38cf1a73eb313f9ec> /System/Library/Frameworks/Accounts.framework/Accounts
0x2d4fa000 - 0x2d561ff3 AddressBook armv7s <081495c24868358ea3f06e320fba44f4> /System/Library/Frameworks/AddressBook.framework/AddressBook
0x2d7cf000 - 0x2daebff0 AudioToolbox armv7s <056c504e1dd73ed4bbb54f57fa3dc873> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
0x2daec000 - 0x2dc0aff0 CFNetwork armv7s <ed4b37345fca3e02bc3d2bbcac484b16> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
0x2dc0b000 - 0x2dc66ff7 CoreAudio armv7s <cf2658996f5c30d394af6ad906d8e0af> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
0x2dc67000 - 0x2dc7efff CoreBluetooth armv7s <6fd36c8dc6be34ec88b5179e76ce246d> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
0x2dc7f000 - 0x2de73067 CoreData armv7s <a060f165568c31289760beb020e70f2e> /System/Library/Frameworks/CoreData.framework/CoreData
0x2de74000 - 0x2dfb7ff0 CoreFoundation armv7s <83decfd26c653905912f5cdb8743f5d9> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
0x2dfb8000 - 0x2e0dcffb CoreGraphics armv7s <840c99b38b9f3ef497079f300ff15a1b> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
0x2e0de000 - 0x2e119ff0 libCGFreetype.A.dylib armv7s <f8e0113922b03325a82471e0ef77d7a1> /System/Library/Frameworks/CoreGraphics.framework/Resources/libCGFreetype.A.dylib
0x2e11b000 - 0x2e125ff8 libCMSBuiltin.A.dylib armv7s <8a3e3045c8b732389f72dd226c1c1e54> /System/Library/Frameworks/CoreGraphics.framework/Resources/libCMSBuiltin.A.dylib
0x2e30a000 - 0x2e324ff3 libRIP.A.dylib armv7s <68accf992a733f58a04315603459e863> /System/Library/Frameworks/CoreGraphics.framework/Resources/libRIP.A.dylib
0x2e325000 - 0x2e3feffc CoreImage armv7s <706f78907a5d3146b6d9c0382693a112> /System/Library/Frameworks/CoreImage.framework/CoreImage
0x2e3ff000 - 0x2e44eff7 CoreLocation armv7s <c20e4e3610743dc3affe4480639a16f8> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
0x2e486000 - 0x2e501ffb CoreMedia armv7s <df4f98e752493f7daeb9166940a33dba> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
0x2e502000 - 0x2e5aaffb CoreMotion armv7s <55bfab09e92b30d782ec33decd5f8d15> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
0x2e5ab000 - 0x2e603ff7 CoreTelephony armv7s <ad42b931d27832fa83ed5019f37a6afa> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
0x2e604000 - 0x2e694ff3 CoreText armv7s <1eb3fd81e1203680a1ad0eecd4273594> /System/Library/Frameworks/CoreText.framework/CoreText
0x2e695000 - 0x2e6a4fff CoreVideo armv7s <b1c668f2ae323039b02bb52c4a4172b8> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
0x2e865000 - 0x2ea4fff3 Foundation armv7s <52121842f9863ab49b775758dd05db0b> /System/Library/Frameworks/Foundation.framework/Foundation
0x2ec31000 - 0x2ec87ff3 IOKit armv7s <827281a0bc2e3120bc40be79b7e3026b> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x2ec88000 - 0x2ee98ffd ImageIO armv7s <ec4acdf658dd3dec9d2c325db835d987> /System/Library/Frameworks/ImageIO.framework/ImageIO
0x2ee99000 - 0x2f0e5ff7 JavaScriptCore armv7s <12b8c035858737c792488a582909734f> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
0x2f196000 - 0x2f19aff3 MediaAccessibility armv7s <a44ef28b46f236d5a76b63a08976e1dd> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
0x2f19b000 - 0x2f398fff MediaPlayer armv7s <3016d0095677399ea36a5339fe67c291> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
0x2f399000 - 0x2f69fff3 MediaToolbox armv7s <95a2680ee0ba372fa13fb8a683178e67> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
0x2f74c000 - 0x2f7afffe MobileCoreServices armv7s <c3ab5b49a79334a0bcc84247b3132de6> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
0x2f83f000 - 0x30125ff1 libLLVMContainer.dylib armv7s <0d174adad6523ad1baed18f98a89d5e8> /System/Library/Frameworks/OpenGLES.framework/libLLVMContainer.dylib
0x30126000 - 0x301f6ffe GLEngine armv7s <ee51dc607a0e39f8a3f0f5cc84363a9c> /System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine
0x301f7000 - 0x301fffff OpenGLES armv7s <df9830a0248d36e5a9fabb2e633e9001> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
0x30201000 - 0x30201fff libCVMSPluginSupport.dylib armv7s <6f98aa42a1593958a5455706156e9402> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
0x30202000 - 0x30205ffe libCoreFSCache.dylib armv7s <d58db35c909f3a5394c40adf17cc1188> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
0x30206000 - 0x30209ffe libCoreVMClient.dylib armv7s <38ff1c7f12f83f8bac062e8daf9d4c10> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
0x3020a000 - 0x30211fff libGFXShared.dylib armv7s <a92cda33404b339da0e84a5fe133e06e> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
0x30212000 - 0x30252ffc libGLImage.dylib armv7s <7d912d8e3a453456a6e2d806b59aa448> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
0x30253000 - 0x30387ffe libGLProgrammability.dylib armv7s <ccc9b565091c362d9db0a126df0a8950> /System/Library/Frameworks/OpenGLES.framework/libGLProgrammability.dylib
0x303ea000 - 0x30531fff QuartzCore armv7s <d5174e25cef83958adf812e37c93a41e> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
0x30532000 - 0x30588ff1 QuickLook armv7s <4ca86ffb65013bf881d7af2ff4b9790b> /System/Library/Frameworks/QuickLook.framework/QuickLook
0x3058b000 - 0x305cdffb Security armv7s <1e4881d7baad301d86c74515fea45c36> /System/Library/Frameworks/Security.framework/Security
0x3071d000 - 0x3076cfff SystemConfiguration armv7s <3d6772f0ad5938558a4bc677965db338> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
0x3076f000 - 0x30ee2ffd UIKit armv7s <e6756dd481773242b35fa4db5378453b> /System/Library/Frameworks/UIKit.framework/UIKit
0x30ee3000 - 0x30f31ff3 VideoToolbox armv7s <584a3e65bebe3025a2656cbf0c53a7a5> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
0x31138000 - 0x31139ff7 AGXCompilerConnection armv7s <a976a477c2a834fb82c2c460e31c5f3a> /System/Library/PrivateFrameworks/AGXCompilerConnection.framework/AGXCompilerConnection
0x3113a000 - 0x31169ffa AGXCompilerCore armv7s <469a6c21e747397dadbfae7ee35ff416> /System/Library/PrivateFrameworks/AGXCompilerCore.framework/AGXCompilerCore
0x312a3000 - 0x312a7fff AggregateDictionary armv7s <b613b360be4f31948901570de6a079d2> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
0x31585000 - 0x31599ffb AirTraffic armv7s <a51adbb21cff3333a112544baf944a11> /System/Library/PrivateFrameworks/AirTraffic.framework/AirTraffic
0x31903000 - 0x31941ff3 AppSupport armv7s <4f0f918a35d733e9b6f49b785ffbf233> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
0x31a27000 - 0x31a37ffc ApplePushService armv7s <06d7dae5ed5b37f1b4eb56f2d12fac59> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
0x31a38000 - 0x31a3efff AppleSRP armv7s <e1db5ed3b8e034ce94f260077c96cea8> /System/Library/PrivateFrameworks/AppleSRP.framework/AppleSRP
0x31a6b000 - 0x31a77ffb AssetsLibraryServices armv7s <19f6f222ffd83c34b022213e4e427815> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices
0x31ac1000 - 0x31ac4ffd BTLEAudioController armv7s <7ae2e740df58350e877d2573d4c0f766> /System/Library/PrivateFrameworks/BTLEAudioController.framework/BTLEAudioController
0x31ac5000 - 0x31aeaffb BackBoardServices armv7s <1ab89a11a7a834e4a36de79352bd9f6b> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
0x31aed000 - 0x31af2ffc BluetoothManager armv7s <61ec3ec9b9073254bc8deccc40cc4b31> /System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager
0x31af3000 - 0x31b17ff7 Bom armv7s <bf26b007d10337299e84e9c498b3378d> /System/Library/PrivateFrameworks/Bom.framework/Bom
0x31bb8000 - 0x31bc0fff CaptiveNetwork armv7s <fb377104cf243743936d565eea038284> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
0x31bc1000 - 0x31c9dff5 Celestial armv7s <8c5698e317e6352eadea1e2bf93fd95c> /System/Library/PrivateFrameworks/Celestial.framework/Celestial
0x31caa000 - 0x31caffff CertUI armv7s <78cc91d2d6b730ee86ea2a768d666d4a> /System/Library/PrivateFrameworks/CertUI.framework/CertUI
0x31d7b000 - 0x31d9bffd ChunkingLibrary armv7s <9232ff4b2da43310a989090f5ae79547> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary
0x31dec000 - 0x31df7fff CommonUtilities armv7s <9317cb2858663a8b872b5bcb11453aeb> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
0x31df8000 - 0x31dfcfff CommunicationsFilter armv7s <53315d7fbfee3bf095fff818731fe781> /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter
0x31e8d000 - 0x31e8ffff ConstantClasses armv7s <c910908091933017a5e778cb99a1b713> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
0x31ecf000 - 0x31ed1fff CoreAUC armv7s <4296dced79b730fab4a92ee64a15ebae> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC
0x32166000 - 0x32184fff CoreServicesInternal armv7s <6ccdd53c1e5a38f2b26689ef2c581e4d> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal
0x32185000 - 0x32186ffd CoreSurface armv7s <19b928f48fd33cbe9a84800e6fd4f6cd> /Syste
Steps to analyze crash report from apple:
Copy the release .app file which was pushed to the appstore, the .dSYM file that was created at the time of release and the crash report receive from APPLE into a FOLDER.
OPEN terminal application and go to the folder created above (using cd command)
Run atos -arch armv7 -o APPNAME.app/APPNAME MEMORY_LOCATION_OF_CRASH. The memory location should be the one at which the app crashed as per the report.
Ex: atos -arch armv7 -o 'APPNAME.app'/'APPNAME' 0x0003b508
This would show you the exact line, method name which resulted in crash.
Ex: [classname functionName:]; -510
Symbolicating IPA
if we use IPA for symbolicating - just rename the extention .ipa with .zip , extract it then we can get a Payload Folder which contain app. In this case we don't need .dSYM file.
Note
This can only work if the app binary does not have symbols stripped. By default release builds stripped the symbols. We can change it in project build settings "Strip Debug Symbols During Copy" to NO.
Edit:
There are 3 assets that have to fit together when symbolicating a crash log:
The crash log file itself (i.e. example.crash), either exported from XCode's organizer or received from iTunes Connect.
The .app package (i.e. example.app) that itself contains the app binary belonging to the crash log. I you have an .ipa package (i.e. example.ipa) then you can extract the .app package by unzipping the .ipa package (i.e. unzip example.ipa). Afterwards the .app package resides in the extracted Payload/ folder.
The .dSYM package containing the debug symbols (i.e. example.app.dSYM)
Before starting symbolication you should check if all those artifacts match, which means that the crash log belongs to the binary you have and that the debug symbols are the ones produced during the build of that binary.
Each binary is referred by a UUID that can be seen in the crash log file:
...
Binary Images:
0xe1000 - 0x1f0fff +example armv7 /var/mobile/Applications/9FB5D11F-42C0-42CA-A336-4B99FF97708F/example.app/example
0x2febf000 - 0x2fedffff dyld armv7s <4047d926f58e36b98da92ab7a93a8aaf> /usr/lib/dyld
...
In this extract the crash log belongs to an app binary image named example.app/example with UUID aa5e633efda8346cab92b01320043dc3.
You can check the UUID of the binary package you have with dwarfdump:
dwarfdump --uuid example.app/example
UUID: AA5E633E-FDA8-346C-AB92-B01320043DC3 (armv7) example.app/example
Afterwards you should check if the debug symbols you have also belong to that binary:
dwarfdump --uuid example.app.dSYM
UUID: AA5E633E-FDA8-346C-AB92-B01320043DC3 (armv7) example.app.dSYM/Contents/Resources/DWARF/example
In this example all assets fit together and you should be able to symbolicate your stacktrace.
Proceeding to the symbolicatecrash script:
In the latest XCode version you should be able to invoke the script via
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/PrivateFrameworks/DTDeviceKit.framework/Versions/A/Resources/symbolicatecrash -v example.crash 2> symbolicate.log
If it is not there you may run a find . -name symbolicatecrash in your XCode.app directory to find it.
As you can see there are no more parameters given. So the script has to find your application binary and debug symbols by running a spotlight search. It searches the debug symbols with a specific index called com_apple_xcode_dsym_uuids. You can do this search yourself:
mdfind 'com_apple_xcode_dsym_uuids = *'
resp.
mdfind "com_apple_xcode_dsym_uuids == AA5E633E-FDA8-346C-AB92-B01320043DC3"
The first spotlight invocation gives you all indexed dSYM packages and the second one gives you the .dSYM packages with a specific UUID. If spotlight does not find your .dSYM package then symbolicatecrash will neither. If you do all this stuff e.g. in a subfolder of your ~/Desktop spotlight should be able to find everything.
If symbolicatecrash finds your .dSYM package there should be a line like the following in symbolicate.log:
#dsym_paths = ( /example.app.dSYM/Contents/Resources/DWARF/example )
For finding your .app package a spotlight search like the following is invoked by symbolicatecrash:
mdfind "kMDItemContentType == com.apple.application-bundle && (kMDItemAlternateNames == 'example.app' || kMDItemDisplayName == 'example' || kMDItemDisplayName == 'example.app')"
If symbolicatecrash finds your .app package there should be the following extract in symbolicate.log:
Number of symbols in /example.app/example: 2209 + 19675 = 21884
Found executable /example.app/example
-- MATCH
If all those resources are found by symbolicatecrash it should print out the symbolicated version of your crash log.
link: source link
And finally TEST TEST TEST
The real crash is thread 4. I'm getting similar crashes when invoking on the javascript context in a UIWebView. It's an intermittent crash and I have been unable to track it down.

Crash Report - iOS - Loads, But Crashes on First Touch

Can anyone help me understand a crash report? I have just updated the app and all of a sudden it seems to be crash when you touch ANY button on the first view controller, but I have made no changes to the code regarding this but all of a sudden it is starting to cause problems. Any guidance on where to start would be amazing.
Incident Identifier: EF8306B7-7714-4089-849B-CEE1BB721392
CrashReporter Key: 69f07ddbd44f2b41931a1c0cbe3a2bba5b94fd86
Hardware Model: iPad2,5
Process: ******** [895]
Path: /var/mobile/Applications/FEA3E6BF-5A33-40F9-AB10-8F53DFAED64D/******** HD.app/iWhovian HD
Identifier: ***************
Version: ??? (???)
Code Type: ARM (Native)
Parent Process: launchd [1]
Date/Time: 2013-06-10 16:54:27.884 +0100
OS Version: iOS 6.1.3 (10B329)
Report Version: 104
Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Crashed Thread: 0
Last Exception Backtrace:
0 CoreFoundation 0x3404029e __exceptionPreprocess + 158
1 libobjc.A.dylib 0x3beeb97a objc_exception_throw + 26
2 CoreFoundation 0x340401c0 +[NSException raise:format:] + 100
3 Foundation 0x348b5104 -[NSURL(NSURL) initFileURLWithPath:] + 72
4 Foundation 0x348b502e +[NSURL(NSURL) fileURLWithPath:] + 38
5 iWhovian HD 0x000fd03c -[MainViewController clicksound] (MainViewController.m:53)
6 iWhovian HD 0x000fd478 -[MainViewController playbuttonClicked] (MainViewController.m:116)
7 UIKit 0x35f330c0 -[UIApplication sendAction:to:from:forEvent:] + 68
8 UIKit 0x35f33072 -[UIApplication sendAction:toTarget:fromSender:forEvent:] + 26
9 UIKit 0x35f33050 -[UIControl sendAction:to:forEvent:] + 40
10 UIKit 0x35f32906 -[UIControl(Internal) _sendActionsForEvents:withEvent:] + 498
11 UIKit 0x35f32dfc -[UIControl touchesEnded:withEvent:] + 484
12 UIKit 0x35e5b5ec -[UIWindow _sendTouchesForEvent:] + 520
13 UIKit 0x35e487fc -[UIApplication sendEvent:] + 376
14 UIKit 0x35e48116 _UIApplicationHandleEvent + 6150
15 GraphicsServices 0x37b5359e _PurpleEventCallback + 586
16 GraphicsServices 0x37b531ce PurpleEventCallback + 30
17 CoreFoundation 0x3401516e __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 30
18 CoreFoundation 0x34015112 __CFRunLoopDoSource1 + 134
19 CoreFoundation 0x34013f94 __CFRunLoopRun + 1380
20 CoreFoundation 0x33f86eb8 CFRunLoopRunSpecific + 352
21 CoreFoundation 0x33f86d44 CFRunLoopRunInMode + 100
22 GraphicsServices 0x37b522e6 GSEventRunModal + 70
23 UIKit 0x35e9c2fc UIApplicationMain + 1116
24 iWhovian HD 0x000f5b62 main (main.m:16)
25 iWhovian HD 0x000f5b24 start + 36
Thread 0 name: Dispatch queue: com.apple.main-thread
Thread 0 Crashed:
0 libsystem_kernel.dylib 0x3c3e9350 __pthread_kill + 8
1 libsystem_c.dylib 0x3c36011e pthread_kill + 54
2 libsystem_c.dylib 0x3c39c96e abort + 90
3 libc++abi.dylib 0x3b93ad4a abort_message + 70
4 libc++abi.dylib 0x3b937ff4 default_terminate() + 20
5 libobjc.A.dylib 0x3beeba74 _objc_terminate() + 144
6 libc++abi.dylib 0x3b938078 safe_handler_caller(void (*)()) + 76
7 libc++abi.dylib 0x3b938110 std::terminate() + 16
8 libc++abi.dylib 0x3b939594 __cxa_rethrow + 84
9 libobjc.A.dylib 0x3beeb9cc objc_exception_rethrow + 8
10 CoreFoundation 0x33f86f1c CFRunLoopRunSpecific + 452
11 CoreFoundation 0x33f86d44 CFRunLoopRunInMode + 100
12 GraphicsServices 0x37b522e6 GSEventRunModal + 70
13 UIKit 0x35e9c2fc UIApplicationMain + 1116
14 iWhovian HD 0x000f5b62 main (main.m:16)
15 iWhovian HD 0x000f5b24 start + 36
Thread 1:
0 libsystem_kernel.dylib 0x3c3e9d98 __workq_kernreturn + 8
1 libsystem_c.dylib 0x3c337cf6 _pthread_workq_return + 14
2 libsystem_c.dylib 0x3c337a12 _pthread_wqthread + 362
3 libsystem_c.dylib 0x3c3378a0 start_wqthread + 4
Thread 2 name: Dispatch queue: com.apple.libdispatch-manager
Thread 2:
0 libsystem_kernel.dylib 0x3c3d9648 kevent64 + 24
1 libdispatch.dylib 0x3c309974 _dispatch_mgr_invoke + 792
2 libdispatch.dylib 0x3c309654 _dispatch_mgr_thread$VARIANT$mp + 32
Thread 3:
0 libsystem_kernel.dylib 0x3c3e9d98 __workq_kernreturn + 8
1 libsystem_c.dylib 0x3c337cf6 _pthread_workq_return + 14
2 libsystem_c.dylib 0x3c337a12 _pthread_wqthread + 362
3 libsystem_c.dylib 0x3c3378a0 start_wqthread + 4
Thread 4 name: WebThread
Thread 4:
0 libsystem_kernel.dylib 0x3c3d8eb4 mach_msg_trap + 20
1 libsystem_kernel.dylib 0x3c3d9048 mach_msg + 36
2 CoreFoundation 0x34015040 __CFRunLoopServiceMachPort + 124
3 CoreFoundation 0x34013d9e __CFRunLoopRun + 878
4 CoreFoundation 0x33f86eb8 CFRunLoopRunSpecific + 352
5 CoreFoundation 0x33f86d44 CFRunLoopRunInMode + 100
6 WebCore 0x39f8d500 RunWebThread(void*) + 440
7 libsystem_c.dylib 0x3c34230e _pthread_start + 306
8 libsystem_c.dylib 0x3c3421d4 thread_start + 4
Thread 5:
0 libsystem_kernel.dylib 0x3c3e9d98 __workq_kernreturn + 8
1 libsystem_c.dylib 0x3c337cf6 _pthread_workq_return + 14
2 libsystem_c.dylib 0x3c337a12 _pthread_wqthread + 362
3 libsystem_c.dylib 0x3c3378a0 start_wqthread + 4
Thread 6 name: AQClient
Thread 6:
0 libsystem_kernel.dylib 0x3c3d8eb4 mach_msg_trap + 20
1 libsystem_kernel.dylib 0x3c3d9048 mach_msg + 36
2 CoreFoundation 0x34015040 __CFRunLoopServiceMachPort + 124
3 CoreFoundation 0x34013d9e __CFRunLoopRun + 878
4 CoreFoundation 0x33f86eb8 CFRunLoopRunSpecific + 352
5 CoreFoundation 0x33f86d44 CFRunLoopRunInMode + 100
6 AudioToolbox 0x33a686fe GenericRunLoopThread::Entry(void*) + 134
7 AudioToolbox 0x33a49882 CAPThread::Entry(CAPThread*) + 294
8 libsystem_c.dylib 0x3c34230e _pthread_start + 306
9 libsystem_c.dylib 0x3c3421d4 thread_start + 4
Thread 7:
0 libsystem_kernel.dylib 0x3c3e9d98 __workq_kernreturn + 8
1 libsystem_c.dylib 0x3c337cf6 _pthread_workq_return + 14
2 libsystem_c.dylib 0x3c337a12 _pthread_wqthread + 362
3 libsystem_c.dylib 0x3c3378a0 start_wqthread + 4
Thread 0 crashed with ARM Thread State (32-bit):
r0: 0x00000000 r1: 0x00000000 r2: 0x00000000 r3: 0x3dedf534
r4: 0x00000006 r5: 0x3dedfb88 r6: 0x1fdb9714 r7: 0x2fd0da24
r8: 0x1fdb96f0 r9: 0x00000400 r10: 0x00000000 r11: 0x00000001
ip: 0x00000148 sp: 0x2fd0da18 lr: 0x3c360123 pc: 0x3c3e9350
cpsr: 0x00000010
Binary Images:
0xf3000 - 0x10dfff +iWhovian HD armv7 <53cc16be6b9e3b30b6b8925fc77f0249> /var/mobile/Applications/FEA3E6BF-5A33-40F9-AB10-8F53DFAED64D/iWhovian HD.app/iWhovian HD
0x2fe8b000 - 0x2feabfff dyld armv7 <280610df5ed43ec7aa00629a27009302> /usr/lib/dyld
0x33161000 - 0x33247fff AVFoundation armv7 <320761e836883aeabf3cb5c53edb636d> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
0x33248000 - 0x33248fff Accelerate armv7 <b68ff92e404931f3bcb6361720f77724> /System/Library/Frameworks/Accelerate.framework/Accelerate
0x33249000 - 0x33387fff vImage armv7 <30522b92940d3dd184c8e46780594048> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
0x33388000 - 0x3346bfff libBLAS.dylib armv7 <d8edada1cea133458ca779e34a3a7f88> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
0x3346c000 - 0x33721fff libLAPACK.dylib armv7 <9e08aead79d13043bab622402a270fba> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
0x33722000 - 0x3377bfff libvDSP.dylib armv7 <09e2a5e3e9203950890ba57592523132> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
0x3377c000 - 0x3378dfff libvMisc.dylib armv7 <7b7d4ccc9f2b364cb0da4251e745545d> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
0x3378e000 - 0x3378efff vecLib armv7 <a7751c047dcc35ba8885212e1938b93f> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
0x3378f000 - 0x337a0fff Accounts armv7 <ea2de358b6cc3baab27d6ab809c31e39> /System/Library/Frameworks/Accounts.framework/Accounts
0x337a1000 - 0x337a1fff AdSupport armv7 <583bf32d959735949952a2595c86ed20> /System/Library/Frameworks/AdSupport.framework/AdSupport
0x337a2000 - 0x33806fff AddressBook armv7 <8cfae84dc66d3c1f9d17335c53c3d7b7> /System/Library/Frameworks/AddressBook.framework/AddressBook
0x33807000 - 0x338c1fff AddressBookUI armv7 <0017d0a0c2593522acaaa0eee41775e4> /System/Library/Frameworks/AddressBookUI.framework/AddressBookUI
0x338c2000 - 0x338d0fff AssetsLibrary armv7 <9a3a4a47a77833eb82a28757a3488660> /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary
0x33a0c000 - 0x33c94fff AudioToolbox armv7 <394ee11cf826367db9ff4968dbc71d6d> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
0x33c95000 - 0x33d5afff CFNetwork armv7 <4771a5e4f9b83bceb252f0f3d166aaca> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
0x33d5b000 - 0x33db1fff CoreAudio armv7 <5d534dbf76ff30f4a628f25f56c5f26a> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
0x33dc5000 - 0x33f7dfff CoreData armv7 <3930f672c76535a2abb768ee59958fa7> /System/Library/Frameworks/CoreData.framework/CoreData
0x33f7e000 - 0x340b0fff CoreFoundation armv7 <fcb8d4e838543bcb9a52c9f232b8b4eb> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
0x340b1000 - 0x341e9fff CoreGraphics armv7 <81e213f810a034d4ba411f9b505da2a6> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
0x341eb000 - 0x34226fff libCGFreetype.A.dylib armv7 <a5d20b80ab1532d8831027a66d2d9eb5> /System/Library/Frameworks/CoreGraphics.framework/Resources/libCGFreetype.A.dylib
0x3440a000 - 0x34425fff libRIP.A.dylib armv7 <ec1487f9bdb93597a3f8d434406ad9bf> /System/Library/Frameworks/CoreGraphics.framework/Resources/libRIP.A.dylib
0x34426000 - 0x344dbfff CoreImage armv7 <6ae4ae2461313e3f84c6a8102d5b1b0e> /System/Library/Frameworks/CoreImage.framework/CoreImage
0x344dc000 - 0x34534fff CoreLocation armv7 <4edb4b0f05e13af8b84699fe3ea4c538> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
0x34569000 - 0x345cefff CoreMedia armv7 <8592bdc268b83b8886acfc1fdab649ed> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
0x345cf000 - 0x34657fff CoreMotion armv7 <4512d901170d32e7842e7fc1c519386b> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
0x34658000 - 0x346aefff CoreTelephony armv7 <bea09dbe25363c3b8e8016b5b5148055> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
0x346af000 - 0x34711fff CoreText armv7 <e135debbc8f937299f4986fc3e9459e3> /System/Library/Frameworks/CoreText.framework/CoreText
0x34712000 - 0x34721fff CoreVideo armv7 <00f18bb26e663da9ae251a6ec36a19ec> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
0x34722000 - 0x347d6fff EventKit armv7 <99a7a1603323319f9e24f97e9f89bfd3> /System/Library/Frameworks/EventKit.framework/EventKit
0x348a6000 - 0x34a69fff Foundation armv7 <0179934581d13346aa7583165108b95c> /System/Library/Frameworks/Foundation.framework/Foundation
0x34ab4000 - 0x34c23fff GameKit armv7 <7958b5418ef230d38dc0cf754b2a782b> /System/Library/Frameworks/GameKit.framework/GameKit
0x34c24000 - 0x34c6dfff IOKit armv7 <a98ba9fefc7333e4a5a9169198848c62> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x34c6e000 - 0x34e46fff ImageIO armv7 <b5ce84bb074d3de4b07b55da9fd8bfd1> /System/Library/Frameworks/ImageIO.framework/ImageIO
0x34ec0000 - 0x3505afff MediaPlayer armv7 <ce97a30e514d3a17ae93ba4a9d1d69d2> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
0x3505b000 - 0x352d5fff MediaToolbox armv7 <ed439fc5c9a03f8b9fae43af33de8a57> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
0x352d6000 - 0x3535cfff MessageUI armv7 <8dbc0a8e6a253c8c8d6301064f23dfea> /System/Library/Frameworks/MessageUI.framework/MessageUI
0x3535d000 - 0x353b6fff MobileCoreServices armv7 <77da8a9e7f813f5baf37eaa4a87fae84> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
0x354a5000 - 0x354acfff OpenGLES armv7 <f2ede6b206f336de82cc38619692e762> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
0x354ae000 - 0x354aefff libCVMSPluginSupport.dylib armv7 <2506af1c983f3f09ac69aca44f67e863> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
0x354b2000 - 0x354b4fff libCoreVMClient.dylib armv7 <af6ff28dce6031baaa850ccc79e5699b> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
0x354b5000 - 0x354b9fff libGFXShared.dylib armv7 <a6ac1673a088379aa512ba5cac301f5b> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
0x354ba000 - 0x354f7fff libGLImage.dylib armv7 <b8b8f3a1bfd0345e86aa0c2952534949> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
0x35bf2000 - 0x35d07fff QuartzCore armv7 <c086b6e6cd9d341399bcc3675c82f1fe> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
0x35d08000 - 0x35d55fff QuickLook armv7 <954e3a8bdaf337b085b30fd514ea5f3a> /System/Library/Frameworks/QuickLook.framework/QuickLook
0x35d56000 - 0x35d84fff Security armv7 <fbc24f15bd9e37539cdd6e3576bde938> /System/Library/Frameworks/Security.framework/Security
0x35d85000 - 0x35df2fff Social armv7 <7b778c6ce3433df18ef0892acd831208> /System/Library/Frameworks/Social.framework/Social
0x35df3000 - 0x35e02fff StoreKit armv7 <e63a14831d2d315ba5cf654102d67f8c> /System/Library/Frameworks/StoreKit.framework/StoreKit
0x35e03000 - 0x35e42fff SystemConfiguration armv7 <410d69b356e533d6a1d538cf33059634> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
0x35e43000 - 0x35e44fff Twitter armv7 <ecae25ed2c893a969ceb0b911420c2be> /System/Library/Frameworks/Twitter.framework/Twitter
0x35e45000 - 0x36399fff UIKit armv7 <ad8b3ad23f413187a178179db39cfa6b> /System/Library/Frameworks/UIKit.framework/UIKit
0x3639a000 - 0x363d8fff VideoToolbox armv7 <d2e8067306d9346ab4a448f10f336894> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
0x36661000 - 0x3666dfff AccountSettings armv7 <8db45acc4d3d3017af10fa5ee82c2306> /System/Library/PrivateFrameworks/AccountSettings.framework/AccountSettings
0x366b4000 - 0x366b7fff ActorKit armv7 <5dfc59258ea63006be9c542e5fafbc45> /System/Library/PrivateFrameworks/ActorKit.framework/ActorKit
0x366b9000 - 0x366bcfff AggregateDictionary armv7 <c2a6c1ff89a9318d8b74fc5dfc8847b8> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
0x367a5000 - 0x367b8fff AirTraffic armv7 <752b64045f4d3ea88a946b53b731ce1a> /System/Library/PrivateFrameworks/AirTraffic.framework/AirTraffic
0x36ae8000 - 0x36b23fff AppSupport armv7 <921794b7d82a3558a0eb860979be199c> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
0x36b24000 - 0x36b48fff AppleAccount armv7 <c54536fbc0f235f693060be33d4d4749> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
0x36b55000 - 0x36b62fff ApplePushService armv7 <8bad4a9300db3d4d8555535f25c32da4> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
0x36b96000 - 0x36b9ffff AssetsLibraryServices armv7 <de7ca29cd47433cd8eca9c04102f5508> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices
0x36ba0000 - 0x36bb9fff AssistantServices armv7 <9608ae74229e3daeab9c8fcf679de7d4> /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices
0x36bcf000 - 0x36be6fff BackBoardServices armv7 <772912697ec23e5199a452e97f075dd9> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
0x36be9000 - 0x36beffff BluetoothManager armv7 <fe002961c52538eb8c959e7c1c58467a> /System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager
0x36bf0000 - 0x36c14fff Bom armv7 <b5315d733e123a0781683efdc734064b> /System/Library/PrivateFrameworks/Bom.framework/Bom
0x36c27000 - 0x36c56fff BulletinBoard armv7 <9f46015c5d263064901f7725f4bb93e0> /System/Library/PrivateFrameworks/BulletinBoard.framework/BulletinBoard
0x36c94000 - 0x36c9bfff CaptiveNetwork armv7 <a4f4b86cc84839f78ff746f013bcee6f> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
0x36c9c000 - 0x36d66fff Celestial armv7 <a688df527b65382da586ebc87f28c061> /System/Library/PrivateFrameworks/Celestial.framework/Celestial
0x36d73000 - 0x36d77fff CertUI armv7 <ce979f715cdb3cb5a0f7935f14cc0b35> /System/Library/PrivateFrameworks/CertUI.framework/CertUI
0x36e1d000 - 0x36e36fff ChunkingLibrary armv7 <ec2f76b3ac723a39bbf3f122d7fe73cf> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary
0x36e4a000 - 0x36e4ffff CommonUtilities armv7 <f8fea9ee6ca236b0a7fa6c00eb8a0d24> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
0x36ed4000 - 0x36f04fff ContentIndex armv7 <00ed488e47ee34ca9f01f2cc911f453c> /System/Library/PrivateFrameworks/ContentIndex.framework/ContentIndex
0x36f80000 - 0x37068fff CoreMediaStream armv7 <828bf27fe7a3337cbff7dd8837508819> /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream
0x37115000 - 0x37116fff CoreSurface armv7 <6065f7e040e93d6ea2837e929592cc30> /System/Library/PrivateFrameworks/CoreSurface.framework/CoreSurface
0x3717e000 - 0x37182fff CoreTime armv7 <5f0b123555f03d8aa76cc54314907942> /System/Library/PrivateFrameworks/CoreTime.framework/CoreTime
0x37183000 - 0x37188fff CrashReporterSupport armv7 <03ee46e3ca3f3920a7174e62096723fb> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
0x37189000 - 0x371c5fff DataAccess armv7 <d7185042adf63908ae87fe4a5c3f8a6c> /System/Library/PrivateFrameworks/DataAccess.framework/DataAccess
0x3735a000 - 0x3736cfff DataAccessExpress armv7 <b9423867a9ef303b87d2e1eac1712957> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
0x373ab000 - 0x373acfff DataMigration armv7 <5903e08348b83f119022cbbf83ad100a>
The problem is in clicksound Method of MainViewController at line number 53. I think crash occurs in when you create NSURL check that code.

Resources