microsoftgraph / msgraph-sdk-dotnet

Microsoft Graph Client Library for .NET!
https://graph.microsoft.com
Other
704 stars 252 forks source link

Lib crashes on iOS 10.3 #282

Closed tipa closed 5 years ago

tipa commented 6 years ago

I am using Microsoft.Graph 1.9.0 (NuGet) in a Xamarin.iOS project. Calling the GraphServiceClient constructor on a physical device running iOS 10.3 (in my case a iPhone 5C) crashes the app. No crash happens on a physical device or emulator running iOS 11.

var graphClient = new GraphServiceClient(GraphAPIEndpoint, new DelegateAuthenticationProvider(reqMsg =>
{
    reqMsg.Headers.Authorization = new AuthenticationHeaderValue("bearer", authResult.AccessToken);
    return Task.CompletedTask;
}));

Crash log that appears in the VS output console:

2018-06-30 12:53:37.356 MyApp.iOS[396:167275] critical: Stacktrace:

2018-06-30 12:53:37.356 MyApp.iOS[396:167275] critical:   at <unknown> <0xffffffff>
2018-06-30 12:53:37.357 MyApp.iOS[396:167275] critical:   at (wrapper managed-to-native) UIKit.UIApplication.UIApplicationMain (int,string[],intptr,intptr) <0x0004f>
2018-06-30 12:53:37.357 MyApp.iOS[396:167275] critical:   at UIKit.UIApplication.Main (string[],intptr,intptr) [0x00005] in /Library/Frameworks/Xamarin.iOS.framework/Versions/11.12.0.4/src/Xamarin.iOS/UIKit/UIApplication.cs:79
2018-06-30 12:53:37.357 MyApp.iOS[396:167275] critical:   at UIKit.UIApplication.Main (string[],string,string) [0x0002c] in /Library/Frameworks/Xamarin.iOS.framework/Versions/11.12.0.4/src/Xamarin.iOS/UIKit/UIApplication.cs:63
2018-06-30 12:53:37.357 MyApp.iOS[396:167275] critical:   at MyApp.Application.Main (string[]) [0x00001] in C:\Users\timop\Desktop\APPS\MyApp\MyApp.iOS\AppDelegate.cs:70
2018-06-30 12:53:37.358 MyApp.iOS[396:167275] critical:   at (wrapper runtime-invoke) object.runtime_invoke_dynamic (intptr,intptr,intptr,intptr) [0x0001e] in <b238a3153e534349ad
10ed0787f2157a#9BFE1CAB-DE75-6BFE-DE66-04B539B877F7>:0
2018-06-30 12:53:37.358 MyApp.iOS[396:167275] critical: 
Native stacktrace:
2018-06-30 12:53:37.363 MyApp.iOS[396:167275] critical:     0   MyApp.iOS                    0x059d8d89 MyApp.iOS + 93187465
2018-06-30 12:53:37.363 MyApp.iOS[396:167275] critical:     1   MyApp.iOS                    0x059e2973 mono_pmip + 9966
2018-06-30 12:53:37.363 MyApp.iOS[396:167275] critical:     2   libsystem_platform.dylib            0x1bb00259 _sigtramp + 24
2018-06-30 12:53:37.364 MyApp.iOS[396:167275] critical:     3   MyApp.iOS                    0x02c483ec MyApp.iOS + 45409260
2018-06-30 12:53:37.364 MyApp.iOS[396:167275] critical:     4   MyApp.iOS                    0x001f62b0 MyApp.iOS + 1032880
2018-06-30 12:53:37.364 MyApp.iOS[396:167275] critical:     5   MyApp.iOS                    0x0060fdec MyApp.iOS + 5332460
2018-06-30 12:53:37.364 MyApp.iOS[396:167275] critical:     6   MyApp.iOS                    0x001bbb48 MyApp.iOS + 793416
2018-06-30 12:53:37.365 MyApp.iOS[396:167275] critical:     7   MyApp.iOS                    0x001bc3a8 MyApp.iOS + 795560
2018-06-30 12:53:37.365 MyApp.iOS[396:167275] critical:     8   MyApp.iOS                    0x002225d8 MyApp.iOS + 1213912
2018-06-30 12:53:37.366 MyApp.iOS[396:167275] critical:     15  MyApp.iOS                    0x00157c39 MyApp.iOS + 384057
2018-06-30 12:53:37.366 MyApp.iOS[396:167275] critical:     16  MyApp.iOS                    0x0015b5d1 MyApp.iOS + 398801
2018-06-30 12:53:37.367 MyApp.iOS[396:167275] critical:     17  UIKit                               0x214c9187 <redacted> + 610
2018-06-30 12:53:37.367 MyApp.iOS[396:167275] critical:     18  UIKit                               0x2157ed87 <redacted> + 194
2018-06-30 12:53:37.367 MyApp.iOS[396:167275] critical:     19  UIKit                               0x214c9187 <redacted> + 610
2018-06-30 12:53:37.368 MyApp.iOS[396:167275] critical:     20  UIKit                               0x21533d1b <redacted> + 38
2018-06-30 12:53:37.365 MyApp.iOS[396:167275] critical:     9   MyApp.iOS                    0x0060f69c MyApp.iOS + 5330588
2018-06-30 12:53:37.365 MyApp.iOS[396:167275] critical:     10  MyApp.iOS                    0x001f0f68 MyApp.iOS + 1011560
2018-06-30 12:53:37.365 MyApp.iOS[396:167275] critical:     11  MyApp.iOS                    0x00864bd0 MyApp.iOS + 7777232
2018-06-30 12:53:37.365 MyApp.iOS[396:167275] critical:     12  MyApp.iOS                    0x059e43cd mono_pmip + 16712
2018-06-30 12:53:37.366 MyApp.iOS[396:167275] critical:     13  MyApp.iOS                    0x05a45ab3 mono_pmip + 415790
2018-06-30 12:53:37.366 MyApp.iOS[396:167275] critical:     14  MyApp.iOS                    0x05a485f1 mono_pmip + 426860
2018-06-30 12:53:37.368 MyApp.iOS[396:167275] critical:     21  UIKit                               0x21533cb3 <redacted> + 98
2018-06-30 12:53:37.368 MyApp.iOS[396:167275] critical:     22  UIKit                               0x21730a6d <redacted> + 510
2018-06-30 12:53:37.368 MyApp.iOS[396:167275] critical:     23  UIKit                               0x21723c93 <redacted> + 524
2018-06-30 12:53:37.369 MyApp.iOS[396:167275] critical:     24  UIKit                               0x2173a779 <redacted> + 140
2018-06-30 12:53:37.369 MyApp.iOS[396:167275] critical:     25  CoreFoundation                      0x1c23bf15 <redacted> + 10
2018-06-30 12:53:37.369 MyApp.iOS[396:167275] critical:     26  CoreFoundation                      0x1c23b925 <redacted> + 230
2018-06-30 12:53:37.369 MyApp.iOS[396:167275] critical:     27  CoreFoundation                      0x1c239f47 <redacted> + 1150
2018-06-30 12:53:37.370 MyApp.iOS[396:167275] critical:     28  CoreFoundation                      0x1c18d1af CFRunLoopRunSpecific + 470
2018-06-30 12:53:37.370 MyApp.iOS[396:167275] critical:     29  CoreFoundation                      0x1c18cfd1 CFRunLoopRunInMode + 104
2018-06-30 12:53:37.370 MyApp.iOS[396:167275] critical:     30  GraphicsServices                    0x1d937b41 GSEventRunModal + 80
2018-06-30 12:53:37.370 MyApp.iOS[396:167275] critical:     31  UIKit                               0x21515a53 UIApplicationMain + 150
2018-06-30 12:53:37.371 MyApp.iOS[396:167275] critical:     32  MyApp.iOS                    0x017260b4 MyApp.iOS + 23249076
2018-06-30 12:53:37.371 MyApp.iOS[396:167275] critical:     33  MyApp.iOS                    0x00fd61d0 MyApp.iOS + 15581648
2018-06-30 12:53:37.371 MyApp.iOS[396:167275] critical:     34  MyApp.iOS                    0x00fd6068 MyApp.iOS + 15581288
2018-06-30 12:53:37.371 MyApp.iOS[396:167275] critical:     35  MyApp.iOS                    0x001baf08 MyApp.iOS + 790280
2018-06-30 12:53:37.372 MyApp.iOS[396:167275] critical:     36  MyApp.iOS                    0x00864bd0 MyApp.iOS + 7777232
2018-06-30 12:53:37.372 MyApp.iOS[396:167275] critical:     37  MyApp.iOS                    0x059e43cd mono_pmip + 16712
2018-06-30 12:53:37.372 MyApp.iOS[396:167275] critical:     38  MyApp.iOS                    0x05a45ab3 mono_pmip + 415790
2018-06-30 12:53:37.372 MyApp.iOS[396:167275] critical:     39  MyApp.iOS                    0x05a4a0ef mono_pmip + 433770
2018-06-30 12:53:37.372 MyApp.iOS[396:167275] critical:     40  MyApp.iOS                    0x059ccf87 MyApp.iOS + 93138823
2018-06-30 12:53:37.373 MyApp.iOS[396:167275] critical:     41  MyApp.iOS                    0x05b250a8 xamarin_localized_string_format_9 + 33276
2018-06-30 12:53:37.373 MyApp.iOS[396:167275] critical:     42  MyApp.iOS                    0x001b5237 MyApp.iOS + 766519
2018-06-30 12:53:37.373 MyApp.iOS[396:167275] critical:     43  libdyld.dylib                       0x1b97a4eb <redacted> + 2
2018-06-30 12:53:37.373 MyApp.iOS[396:167275] critical: 
=================================================================
Got a SIGSEGV while executing native code. This usually indicates
a fatal error in the mono runtime or one of the native libraries 
used by your application.
=================================================================
The app has been terminated.

I also tried pulling the repo to debug it directly but I failed building the library (although following the steps in the readme).

Environment

VS 15.7.4 (Windows) Xamarin.iOS 11.12.0.4 Testdevice: iPhone 5C - iOS10.3.3

huaminhquang commented 6 years ago

This issue also happen on iPhone 4s - iOS 9.3

MIchaelMainer commented 6 years ago

Thank you for bringing this to our attention.

I'm not familiar with this scenario. Is there a difference in the target runtime version when you target 10.3 versus 11? I'm wondering whether this is a known Xamarin issue. Nothing in the StackTrace gives me a hint that the GraphServiceClient is the issue.

825004

tipa commented 6 years ago

I don't think there is a difference, but I am unsure how to check it.

huaminhquang commented 6 years ago

Hi, When i tried to debug, and put the breakpoint on DelegateAuthenticationProvider. I saw visual studio show the error like above.

So I think DelegateAuthenticationProvider class have problem with ios 9, 10 or may be this issues will happen also on device 32 bit?

tipa commented 6 years ago

I also did implement IAuthenticationProvider in my own class (without using DelegateAuthenticationProvider): same problem.

huaminhquang commented 6 years ago

Hello,

Do we have any solution or work around to solve this issue?

MIchaelMainer commented 6 years ago

@huaminhquang I'm sorry, I don't have an update for you on this. I haven't tried Xamarin with iOS before. With that said, can you try running this sample with iOS: https://github.com/microsoftgraph/xamarin-csharp-snippets-sample

I know that my former co-worker had this running with iOS. I'd be interested to know whether the repro happens there.

spouliot commented 6 years ago

@huaminhquang Xamarin.iOS itself has almost no conditional code based on the iOS version being executed. Whenever something works with a newer version of iOS then it's likely because the library calls an API that is not available in your older version (of iOS).

To diagnose this further we would need you to attach the symbolicated crash report (the stack trace above does not tell us, lack of symbols, where this happens). You can get this from device (where it crashed) using Xcode.

It's also often useful to have the device logs (also from Xcode or from VS) to see if iOS printed anything before crashing (e.g. a failed assertion).

huaminhquang commented 6 years ago

@spouliot @MIchaelMainer : actually, we tried many times with your sample, the crash log still be same above. The moment when I tried to login, it's crashed with the log like above.

Environment VS 15.7.4 (Windows) Xamarin.iOS 11.12.0.4 Testdevice: iPhone 5 - iOS10.3.3

spouliot commented 6 years ago

@huaminhquang the above comes from the mono runtime (not iOS) when it detect a crash. The symbols are quite large and not deployed on devices. IOW what mono has is not sufficient to show a useful stack trace.

The easiest way to get symbols is to have Xcode download (from device) and automatically symbolicate (from the build generated .dSYM) the operating system (iOS in this case) crash report. That will give a usable stack trace for all threads and additional information about the state of the process when it crashed.

huaminhquang commented 6 years ago

@spouliot sp how can I get crash report on ios or iPhone devices in this case? Can u help me to do this?

spouliot commented 6 years ago

@huaminhquang https://jmillerdev.net/symbolicating-ios-crash-files-xamarin-ios/ only the first part is normally required (step 1 to 4)

huaminhquang commented 6 years ago

hi @spouliot Tks for your supporting us. This is the crash log from my device

Incident Identifier: 98E222AD-88D5-45E2-8BA2-996028E3471E CrashReporter Key: 657c2606e61d8b1bcb45522b3802e11d636cc222 Hardware Model: iPhone5,2 Process: Graph_Xamarin_CS_SnippetsiOS [13459] Path: /private/var/containers/Bundle/Application/8C4422BB-41B5-4069-AC31-1595FA65BAD5/Graph_Xamarin_CS_SnippetsiOS.app/Graph_Xamarin_CS_SnippetsiOS Identifier: com.yourcompany.Graph_Xamarin_CS_Snippets Version: 1.0 (1.0) Code Type: ARM (Native) Role: Foreground Parent Process: launchd [1] Coalition: com.yourcompany.Graph_Xamarin_CS_Snippets [2950]

Date/Time: 2018-07-26 13:25:49.5567 +0700 Launch Time: 2018-07-26 13:25:46.0000 +0700 OS Version: iPhone OS 10.3.3 (14G60) Report Version: 104

Exception Type: EXC_BAD_ACCESS (SIGABRT) Exception Subtype: KERN_INVALID_ADDRESS at 0x00000000 Triggered by Thread: 0

Application Specific Information: abort() called

Filtered syslog: None found

Thread 0 name: tid_403 Dispatch queue: com.apple.main-thread Thread 0 Crashed: 0 libsystem_kernel.dylib 0x1ba95acc pthread_kill + 8 1 libsystem_pthread.dylib 0x1bb4e086 pthread_kill + 62 2 libsystem_c.dylib 0x1ba2a9d2 abort + 108 3 libsystem_c.dylib 0x1ba2a966 abort + 0 4 Graph_Xamarin_CS_SnippetsiOS 0x02c33630 0xd4000 + 45479472 5 Graph_Xamarin_CS_SnippetsiOS 0x02b8b9f2 0xd4000 + 44792306 6 Graph_Xamarin_CS_SnippetsiOS 0x02b59282 0xd4000 + 44585602 7 Graph_Xamarin_CS_SnippetsiOS 0x02b58384 0xd4000 + 44581764 8 Graph_Xamarin_CS_SnippetsiOS 0x02b51c18 0xd4000 + 44555288 9 ??? 0000000000 0 + 0 10 Graph_Xamarin_CS_SnippetsiOS 0x02af4968 0xd4000 + 44173672 11 Graph_Xamarin_CS_SnippetsiOS 0x02af1cc8 0xd4000 + 44162248 12 Graph_Xamarin_CS_SnippetsiOS 0x02ae9040 0xd4000 + 44126272 13 Graph_Xamarin_CS_SnippetsiOS 0x02ae8c5c 0xd4000 + 44125276 14 Graph_Xamarin_CS_SnippetsiOS 0x02ae8358 0xd4000 + 44122968 15 Graph_Xamarin_CS_SnippetsiOS 0x004732a0 0xd4000 + 3797664 16 Graph_Xamarin_CS_SnippetsiOS 0x0046bce0 0xd4000 + 3767520 17 Graph_Xamarin_CS_SnippetsiOS 0x00455f34 0xd4000 + 3678004 18 Graph_Xamarin_CS_SnippetsiOS 0x000f1a60 0xd4000 + 121440 19 Graph_Xamarin_CS_SnippetsiOS 0x003ddf4c 0xd4000 + 3186508 20 Graph_Xamarin_CS_SnippetsiOS 0x02b63ba6 0xd4000 + 44628902 21 Graph_Xamarin_CS_SnippetsiOS 0x02bb4798 0xd4000 + 44959640 22 Graph_Xamarin_CS_SnippetsiOS 0x02bb7114 0xd4000 + 44970260 23 Graph_Xamarin_CS_SnippetsiOS 0x000d9a1e 0xd4000 + 23070 24 Graph_Xamarin_CS_SnippetsiOS 0x000d9f06 0xd4000 + 24326 25 UIKit 0x215695c4 -[UIApplication _handleDelegateCallbacksWithOptions:isSuspended:restoreState:] + 376 26 UIKit 0x2176aa4a -[UIApplication _callInitializationDelegatesForMainScene:transitionContext:] + 3706 27 UIKit 0x2176fc1c -[UIApplication _runWithMainScene:transitionContext:completion:] + 1640 28 UIKit 0x217827c4 __84-[UIApplication _handleApplicationActivationWithScene:transitionContext:completion:]_block_invoke.3149 + 40 29 UIKit 0x2176d35a -[UIApplication workspaceDidEndTransaction:] + 142 30 FrontBoardServices 0x1dba8c12 FBSSERIALQUEUE_IS_CALLING_OUT_TO_A_BLOCK + 18 31 FrontBoardServices 0x1dba8acc -[FBSSerialQueue _performNext] + 220 32 FrontBoardServices 0x1dba8db6 -[FBSSerialQueue _performNextFromRunLoopSource] + 44 33 CoreFoundation 0x1c283fdc CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION + 12 34 CoreFoundation 0x1c283b04 CFRunLoopDoSources0 + 424 35 CoreFoundation 0x1c281f50 __CFRunLoopRun + 1160 36 CoreFoundation 0x1c1d51ae CFRunLoopRunSpecific + 470 37 CoreFoundation 0x1c1d4fd0 CFRunLoopRunInMode + 104 38 UIKit 0x21562e2c -[UIApplication _run] + 660 39 UIKit 0x2155da52 UIApplicationMain + 150 40 Graph_Xamarin_CS_SnippetsiOS 0x00fa2ddc 0xd4000 + 15527388 41 Graph_Xamarin_CS_SnippetsiOS 0x00f35978 0xd4000 + 15079800 42 Graph_Xamarin_CS_SnippetsiOS 0x00f35938 0xd4000 + 15079736 43 Graph_Xamarin_CS_SnippetsiOS 0x000f18b8 0xd4000 + 121016 44 Graph_Xamarin_CS_SnippetsiOS 0x003ddf4c 0xd4000 + 3186508 45 Graph_Xamarin_CS_SnippetsiOS 0x02b63ba6 0xd4000 + 44628902 46 Graph_Xamarin_CS_SnippetsiOS 0x02bb4798 0xd4000 + 44959640 47 Graph_Xamarin_CS_SnippetsiOS 0x02bb85ca 0xd4000 + 44975562 48 Graph_Xamarin_CS_SnippetsiOS 0x02b50cb8 0xd4000 + 44551352 49 Graph_Xamarin_CS_SnippetsiOS 0x02c45150 0xd4000 + 45551952 50 Graph_Xamarin_CS_SnippetsiOS 0x000f1796 0xd4000 + 120726 51 libdyld.dylib 0x1b9c24ea start + 2

Thread 1: 0 libsystem_kernel.dylib 0x1ba9673c __workq_kernreturn + 8 1 libsystem_pthread.dylib 0x1bb4a744 _pthread_wqthread + 728 2 libsystem_pthread.dylib 0x1bb4a45c start_wqthread + 8

Thread 2: 0 libsystem_kernel.dylib 0x1ba9673c __workq_kernreturn + 8 1 libsystem_pthread.dylib 0x1bb4a8ea _pthread_wqthread + 1150 2 libsystem_pthread.dylib 0x1bb4a45c start_wqthread + 8

Thread 3: 0 libsystem_pthread.dylib 0x1bb4a454 start_wqthread + 0

Thread 4: 0 libsystem_kernel.dylib 0x1ba95808 psynch_cvwait + 24 1 libsystem_pthread.dylib 0x1bb4bc42 _pthread_cond_wait + 560 2 libsystem_pthread.dylib 0x1bb4cfc4 pthread_cond_wait + 38 3 libc++.1.dylib 0x1b4e7c56 std::1::condition_variable::wait+ 23638 (std::1::unique_lock&) + 118 4 JavaScriptCore 0x20142260 void std::1::condition_variable_any::wait<std::1::unique_lock >+ 5288544 (std::1::unique_lock&) + 88 5 JavaScriptCore 0x201421e4 bmalloc::AsyncTask<bmalloc::Heap, void (bmalloc::Heap::)()>::threadRunLoop+ 5288420 () + 154 6 JavaScriptCore 0x201420ec std::1::shared_ptr_emplace<std::1::mutex, std::1::allocator >::~__shared_ptr_emplace+ 5288172 () + 0 7 JavaScriptCore 0x2014232e void std::1::thread_proxy<std::__1::tuple<void ()(bmalloc::AsyncTask<bmalloc::Heap, void (bmalloc::Heap::)()>), bmalloc::AsyncTask<bmalloc::Heap, void (bmalloc::Heap::)()>> >+ 5288750 (void) + 66 8 libsystem_pthread.dylib 0x1bb4c93a _pthread_body + 216 9 libsystem_pthread.dylib 0x1bb4c85c _pthread_start + 234 10 libsystem_pthread.dylib 0x1bb4a468 thread_start + 8

Thread 5 name: WebThread Thread 5: 0 libsystem_kernel.dylib 0x1ba80900 mach_msg_trap + 20 1 libsystem_kernel.dylib 0x1ba806e0 mach_msg + 44 2 CoreFoundation 0x1c283be2 CFRunLoopServiceMachPort + 144 3 CoreFoundation 0x1c282064 CFRunLoopRun + 1436 4 CoreFoundation 0x1c1d51ae CFRunLoopRunSpecific + 470 5 CoreFoundation 0x1c1d4fd0 CFRunLoopRunInMode + 104 6 WebCore 0x203f9ce2 RunWebThread+ 212194 (void*) + 426 7 libsystem_pthread.dylib 0x1bb4c93a _pthread_body + 216 8 libsystem_pthread.dylib 0x1bb4c85c _pthread_start + 234 9 libsystem_pthread.dylib 0x1bb4a468 thread_start + 8

Thread 6 name: SGen worker Thread 6: 0 libsystem_kernel.dylib 0x1ba95808 __psynch_cvwait + 24 1 libsystem_pthread.dylib 0x1bb4bc42 _pthread_cond_wait + 560 2 libsystem_pthread.dylib 0x1bb4cfc4 pthread_cond_wait + 38 3 Graph_Xamarin_CS_SnippetsiOS 0x02c1811c 0xd4000 + 45367580 4 libsystem_pthread.dylib 0x1bb4c93a _pthread_body + 216 5 libsystem_pthread.dylib 0x1bb4c85c _pthread_start + 234 6 libsystem_pthread.dylib 0x1bb4a468 thread_start + 8

Thread 7 name: Finalizer Thread 7: 0 libsystem_kernel.dylib 0x1ba80950 semaphore_wait_trap + 8 1 Graph_Xamarin_CS_SnippetsiOS 0x02b8cfb6 0xd4000 + 44797878 2 Graph_Xamarin_CS_SnippetsiOS 0x02bd7c22 0xd4000 + 45104162 3 libsystem_pthread.dylib 0x1bb4c93a _pthread_body + 216 4 libsystem_pthread.dylib 0x1bb4c85c _pthread_start + 234 5 libsystem_pthread.dylib 0x1bb4a468 thread_start + 8

Thread 8 name: com.apple.uikit.eventfetch-thread Thread 8: 0 libsystem_kernel.dylib 0x1ba80900 mach_msg_trap + 20 1 libsystem_kernel.dylib 0x1ba806e0 mach_msg + 44 2 CoreFoundation 0x1c283be2 CFRunLoopServiceMachPort + 144 3 CoreFoundation 0x1c282064 CFRunLoopRun + 1436 4 CoreFoundation 0x1c1d51ae CFRunLoopRunSpecific + 470 5 CoreFoundation 0x1c1d4fd0 CFRunLoopRunInMode + 104 6 Foundation 0x1cb29af4 -[NSRunLoop+ 47860 (NSRunLoop) runMode:beforeDate:] + 258 7 Foundation 0x1cb4676c -[NSRunLoop+ 165740 (NSRunLoop) runUntilDate:] + 86 8 UIKit 0x21e5ead8 -[UIEventFetcher threadMain] + 128 9 Foundation 0x1cc0d8ea NSThreadstart__ + 1122 10 libsystem_pthread.dylib 0x1bb4c93a _pthread_body + 216 11 libsystem_pthread.dylib 0x1bb4c85c _pthread_start + 234 12 libsystem_pthread.dylib 0x1bb4a468 thread_start + 8

Thread 9: 0 libsystem_pthread.dylib 0x1bb4a454 start_wqthread + 0

Thread 10: 0 libsystem_pthread.dylib 0x1bb4a454 start_wqthread + 0

Thread 0 crashed with ARM Thread State (32-bit): r0: 0x00000000 r1: 0x00000000 r2: 0x00000000 r3: 0xffffffff r4: 0x00000006 r5: 0x39a9de40 r6: 0x15bb5d10 r7: 0x031badf4 r8: 0x15a9aa00 r9: 0x3618e070 r10: 0x1564bb40 r11: 0x031bb2e0 ip: 0x00000148 sp: 0x031bade8 lr: 0x1bb4e087 pc: 0x1ba95acc cpsr: 0x00000010

Binary Images: 0xd4000 - 0x2e0ffff Graph_Xamarin_CS_SnippetsiOS armv7 <1660abc1c6f23ad68e8dc0de551dde10> /var/containers/Bundle/Application/8C4422BB-41B5-4069-AC31-1595FA65BAD5/Graph_Xamarin_CS_SnippetsiOS.app/Graph_Xamarin_CS_SnippetsiOS 0x3052000 - 0x307dfff dyld armv7s /usr/lib/dyld 0x1b4e0000 - 0x1b4e1fff libSystem.B.dylib armv7s /usr/lib/libSystem.B.dylib 0x1b4e2000 - 0x1b52dfff libc++.1.dylib armv7s <818c230dfc88357ab249302107b831f0> /usr/lib/libc++.1.dylib 0x1b52e000 - 0x1b547fff libc++abi.dylib armv7s <33f0c699025730d4b0ad607272fe7ddb> /usr/lib/libc++abi.dylib 0x1b548000 - 0x1b91efff libobjc.A.dylib armv7s <233c8b2bca853098ac1d022d34bdcc3b> /usr/lib/libobjc.A.dylib 0x1b91f000 - 0x1b923fff libcache.dylib armv7s <7e1f8d6da16637e68e52fae288ffe811> /usr/lib/system/libcache.dylib 0x1b924000 - 0x1b92cfff libcommonCrypto.dylib armv7s <0055e658e5573c3eb05c661e1deb2f44> /usr/lib/system/libcommonCrypto.dylib 0x1b92d000 - 0x1b935fff libcompiler_rt.dylib armv7s <182facee469e3b9eacfbdcad641e7ff0> /usr/lib/system/libcompiler_rt.dylib 0x1b936000 - 0x1b93cfff libcopyfile.dylib armv7s <24e8017bf649395f9afe530bf82f1504> /usr/lib/system/libcopyfile.dylib 0x1b93d000 - 0x1b993fff libcorecrypto.dylib armv7s /usr/lib/system/libcorecrypto.dylib 0x1b994000 - 0x1b9befff libdispatch.dylib armv7s <5f9fcd5d9ef73609a4d2c3b31982e7a3> /usr/lib/system/libdispatch.dylib 0x1b9bf000 - 0x1b9c2fff libdyld.dylib armv7s /usr/lib/system/libdyld.dylib 0x1b9c3000 - 0x1b9c3fff libkeymgr.dylib armv7s <58a56485dc913ed58bfbf24a3a02bfd2> /usr/lib/system/libkeymgr.dylib 0x1b9c4000 - 0x1b9c4fff liblaunch.dylib armv7s /usr/lib/system/liblaunch.dylib 0x1b9c5000 - 0x1b9c9fff libmacho.dylib armv7s <01731fc8474e39978c53d2a503b5f2b8> /usr/lib/system/libmacho.dylib 0x1b9ca000 - 0x1b9cbfff libremovefile.dylib armv7s <3015797acd333dfea76830ad28634889> /usr/lib/system/libremovefile.dylib 0x1b9cc000 - 0x1b9defff libsystem_asl.dylib armv7s <14d03741b28136899a5e4b657e825efe> /usr/lib/system/libsystem_asl.dylib 0x1b9df000 - 0x1b9dffff libsystem_blocks.dylib armv7s /usr/lib/system/libsystem_blocks.dylib 0x1b9e0000 - 0x1ba40fff libsystem_c.dylib armv7s /usr/lib/system/libsystem_c.dylib 0x1ba41000 - 0x1ba44fff libsystem_configuration.dylib armv7s <7d81c3c1c07e3b9d847588832ec110a9> /usr/lib/system/libsystem_configuration.dylib 0x1ba45000 - 0x1ba49fff libsystem_containermanager.dylib armv7s <737bdf97ad2338e484477bfeddfbc8dd> /usr/lib/system/libsystem_containermanager.dylib 0x1ba4a000 - 0x1ba4bfff libsystem_coreservices.dylib armv7s /usr/lib/system/libsystem_coreservices.dylib 0x1ba4c000 - 0x1ba5efff libsystem_coretls.dylib armv7s /usr/lib/system/libsystem_coretls.dylib 0x1ba5f000 - 0x1ba64fff libsystem_dnssd.dylib armv7s <09688d4495a536a2a5acc291b9d546ad> /usr/lib/system/libsystem_dnssd.dylib 0x1ba65000 - 0x1ba7ffff libsystem_info.dylib armv7s <1ab16714c54d3a298d84b8e786898ba6> /usr/lib/system/libsystem_info.dylib 0x1ba80000 - 0x1ba9bfff libsystem_kernel.dylib armv7s <68fa10967323333881a30ca2eb1240aa> /usr/lib/system/libsystem_kernel.dylib 0x1ba9c000 - 0x1bacbfff libsystem_m.dylib armv7s <93e03298413e3ebf9a2076ddbd3a9e4c> /usr/lib/system/libsystem_m.dylib 0x1bacc000 - 0x1bae1fff libsystem_malloc.dylib armv7s /usr/lib/system/libsystem_malloc.dylib 0x1bae2000 - 0x1bb31fff libsystem_network.dylib armv7s <0f9981a881a43225a8a7ebcc355c95db> /usr/lib/system/libsystem_network.dylib 0x1bb32000 - 0x1bb3afff libsystem_networkextension.dylib armv7s <20da5438e7cf34e3b96417cc383fe077> /usr/lib/system/libsystem_networkextension.dylib 0x1bb3b000 - 0x1bb42fff libsystem_notify.dylib armv7s <120e114453f43e0f95d96586a061f349> /usr/lib/system/libsystem_notify.dylib 0x1bb43000 - 0x1bb48fff libsystem_platform.dylib armv7s /usr/lib/system/libsystem_platform.dylib 0x1bb49000 - 0x1bb51fff libsystem_pthread.dylib armv7s <1f8c60a5799c3721ae24b52cdb5f0801> /usr/lib/system/libsystem_pthread.dylib 0x1bb52000 - 0x1bb54fff libsystem_sandbox.dylib armv7s <2d5c957946af3fd39626443ff1532869> /usr/lib/system/libsystem_sandbox.dylib 0x1bb55000 - 0x1bb5bfff libsystem_symptoms.dylib armv7s /usr/lib/system/libsystem_symptoms.dylib 0x1bb5c000 - 0x1bb6cfff libsystem_trace.dylib armv7s /usr/lib/system/libsystem_trace.dylib 0x1bb6d000 - 0x1bb6dfff libunwind.dylib armv7s <1af55cb8d4fe3d4682905b05f4f72f8d> /usr/lib/system/libunwind.dylib 0x1bb6e000 - 0x1bb6efff libvminterpose.dylib armv7s <300a677e18c330d4a040fb3b2efea828> /usr/lib/system/libvminterpose.dylib 0x1bb6f000 - 0x1bb8dfff libxpc.dylib armv7s <603f52d6e25f3349ac6af76685e2dc82> /usr/lib/system/libxpc.dylib 0x1bb8e000 - 0x1bd28fff libicucore.A.dylib armv7s <3cc038ecf4563cbf9a621a1db0d566c5> /usr/lib/libicucore.A.dylib 0x1bd29000 - 0x1bd35fff libz.1.dylib armv7s /usr/lib/libz.1.dylib 0x1c1cd000 - 0x1c505fff CoreFoundation armv7s /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation 0x1c506000 - 0x1c512fff libbsm.0.dylib armv7s <6d6c994a7053373895912e21a42aa88c> /usr/lib/libbsm.0.dylib 0x1c513000 - 0x1c513fff libenergytrace.dylib armv7s /usr/lib/libenergytrace.dylib 0x1c514000 - 0x1c577fff IOKit armv7s <0dc883806968362b8b977059ce27b9a4> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x1c578000 - 0x1c594fff libMobileGestalt.dylib armv7s /usr/lib/libMobileGestalt.dylib 0x1c595000 - 0x1c647fff libxml2.2.dylib armv7s <3a9aac19f14b3d1ba8a047f5e3597712> /usr/lib/libxml2.2.dylib 0x1c648000 - 0x1c6c2fff Security armv7s <01c74100672a3a6791023ddfce3ecbd4> /System/Library/Frameworks/Security.framework/Security 0x1c6c3000 - 0x1c71cfff SystemConfiguration armv7s <89520873aac033fdb5c7fba79c6cd30e> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration 0x1c71d000 - 0x1c7f4fff libsqlite3.dylib armv7s <30b946e87be732e3a5ccf0fcc7b88b50> /usr/lib/libsqlite3.dylib 0x1c7f5000 - 0x1cac2fff CFNetwork armv7s <7402f24487c13b6ba000dd266c92dfa8> /System/Library/Frameworks/CFNetwork.framework/CFNetwork 0x1cac3000 - 0x1cacdfff libbz2.1.0.dylib armv7s /usr/lib/libbz2.1.0.dylib 0x1cace000 - 0x1cae3fff liblzma.5.dylib armv7s <0b8324303764321fbc6c88138f58167e> /usr/lib/liblzma.5.dylib 0x1cae4000 - 0x1caf9fff libCRFSuite.dylib armv7s <886fbdbb89ee30c981b159961118ca1e> /usr/lib/libCRFSuite.dylib 0x1cafa000 - 0x1cb1bfff libarchive.2.dylib armv7s /usr/lib/libarchive.2.dylib 0x1cb1c000 - 0x1cb1dfff liblangid.dylib armv7s <73a31c367ad93c0080c4084ac26b6d57> /usr/lib/liblangid.dylib 0x1cb1e000 - 0x1cdadfff Foundation armv7s /System/Library/Frameworks/Foundation.framework/Foundation 0x1cdae000 - 0x1ce8efff libBLAS.dylib armv7s <911b0f985b703b6e975b120eb723aea1> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib 0x1ce8f000 - 0x1d155fff libLAPACK.dylib armv7s <9687d6b970bd312c826851e0902ef970> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib 0x1d156000 - 0x1d3e4fff vImage armv7s /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage 0x1d3e5000 - 0x1d3f7fff libvMisc.dylib armv7s <244481c76a0733adbdaf10b41febffad> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib 0x1d3f8000 - 0x1d40afff libLinearAlgebra.dylib armv7s <46b547093b323f7cb07b27ffc66bcf68> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib 0x1d40b000 - 0x1d41ffff libSparseBLAS.dylib armv7s /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib 0x1d420000 - 0x1d4a3fff libvDSP.dylib armv7s <26856a4a1ae533409076dccbe1873d32> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib 0x1d4a4000 - 0x1d4a4fff vecLib armv7s <3625b8bc1cb938288b9794bc6ce4c424> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib 0x1d4a5000 - 0x1d4a5fff Accelerate armv7s <09d82a9722f63dfe89dc7ac7d959b945> /System/Library/Frameworks/Accelerate.framework/Accelerate 0x1d4a6000 - 0x1d975fff CoreGraphics armv7s <7001dfc793f33a6abcaebac71fcdc69a> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics 0x1d976000 - 0x1d987fff GraphicsServices armv7s <406bb820b2fd358d825d656249f1eded> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices 0x1d988000 - 0x1d9cbfff AppSupport armv7s <13749c59b3343880b1d6c0ca2ff518ae> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport 0x1d9cc000 - 0x1dadcfff MobileCoreServices armv7s <7d15444431b9351180b33f3f47362f31> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices 0x1dadd000 - 0x1db36fff BaseBoard armv7s <04954a0a26f437149769bb1f7155dcf6> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard 0x1db37000 - 0x1db44fff AssertionServices armv7s <339e0bfd7b733166a8e0330e40936021> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices 0x1db45000 - 0x1db6efff BackBoardServices armv7s <2cfe010dee2f30ac9e252a4e6c7ad66d> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices 0x1db73000 - 0x1dbbbfff FrontBoardServices armv7s <535d36f90643350395bde85f5c8621dc> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices 0x1dbbf000 - 0x1dbebfff SpringBoardServices armv7s <249757b4612e3a10adb7ccd876c65527> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices 0x1dbec000 - 0x1dc01fff MobileKeyBag armv7s /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag 0x1dc02000 - 0x1dc08fff IOSurface armv7s <2102390c0a433e41b384aabda69ac1aa> /System/Library/PrivateFrameworks/IOSurface.framework/IOSurface 0x1dc09000 - 0x1dc13fff liblockdown.dylib armv7s /usr/lib/liblockdown.dylib 0x1dc14000 - 0x1dc28fff CrashReporterSupport armv7s /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport 0x1dc29000 - 0x1dc2bfff IOSurfaceAccelerator armv7s /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator 0x1dc2c000 - 0x1dc63fff AppleJPEG armv7s <164a986737e432569a14f98550230d38> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG 0x1dc64000 - 0x1e190fff ImageIO armv7s /System/Library/Frameworks/ImageIO.framework/ImageIO 0x1e191000 - 0x1e196fff TCC armv7s <3146268e30bd313b9f8d497af363cae9> /System/Library/PrivateFrameworks/TCC.framework/TCC 0x1e197000 - 0x1e19bfff AggregateDictionary armv7s /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary 0x1e19c000 - 0x1e1a6fff PowerLog armv7s /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog 0x1e1a7000 - 0x1e203fff libTelephonyUtilDynamic.dylib armv7s /usr/lib/libTelephonyUtilDynamic.dylib 0x1e204000 - 0x1e215fff CommonUtilities armv7s /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities 0x1e216000 - 0x1e226fff libcompression.dylib armv7s /usr/lib/libcompression.dylib 0x1e227000 - 0x1e4a5fff CoreData armv7s /System/Library/Frameworks/CoreData.framework/CoreData 0x1e4a6000 - 0x1e4aafff libCoreVMClient.dylib armv7s <21a4709fcf863ae094ba49fae6b44ab2> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib 0x1e4ab000 - 0x1e4affff IOAccelerator armv7s <25c61a760c463d1b921aa185edd72fd2> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator 0x1e4b0000 - 0x1e4b0fff libCVMSPluginSupport.dylib armv7s <4bd30f4eafba3d11a8926c5e7fa278a9> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib 0x1e4b1000 - 0x1e4b3fff libCoreFSCache.dylib armv7s <0b73239382e135668208c249f5699cb9> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib 0x1e4b4000 - 0x1e4effff libGLImage.dylib armv7s <32b870e5fc25354080c13d2e244a0d89> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib 0x1e4f0000 - 0x1e4f8fff libGFXShared.dylib armv7s /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib 0x1e4f9000 - 0x1e500fff IOMobileFramebuffer armv7s /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer 0x1e501000 - 0x1e501fff libmetal_timestamp.dylib armv7s <84b6772fb0c732f7adb6f7bdf3222357> /System/Library/PrivateFrameworks/GPUCompiler.framework/libmetal_timestamp.dylib 0x1e502000 - 0x1e558fff Metal armv7s /System/Library/Frameworks/Metal.framework/Metal 0x1e559000 - 0x1e561fff OpenGLES armv7s /System/Library/Frameworks/OpenGLES.framework/OpenGLES 0x1e562000 - 0x1e57dfff CoreVideo armv7s <11facca5b69f3f14b03ce69732290982> /System/Library/Frameworks/CoreVideo.framework/CoreVideo 0x1e57e000 - 0x1e580fff OAuth armv7s <08a9c3cf29cd309cb9c0a2ef649c5513> /System/Library/PrivateFrameworks/OAuth.framework/OAuth 0x1e587000 - 0x1e5bbfff Accounts armv7s /System/Library/Frameworks/Accounts.framework/Accounts 0x1e5bc000 - 0x1e6a8fff libiconv.2.dylib armv7s <71b914507d48327f83f6078d189d45ec> /usr/lib/libiconv.2.dylib 0x1e6a9000 - 0x1e7f4fff CoreAudio armv7s /System/Library/Frameworks/CoreAudio.framework/CoreAudio 0x1e7f5000 - 0x1e7f8fff UserFS armv7s <2fafff59896f3b3bbe65a96e556f8e8b> /System/Library/PrivateFrameworks/UserFS.framework/UserFS 0x1e7f9000 - 0x1e8d6fff CoreMedia armv7s <5ff90157be8b36c6969edce875302d62> /System/Library/Frameworks/CoreMedia.framework/CoreMedia 0x1e8d7000 - 0x1e8dcfff libcupolicy.dylib armv7s <9d8bf7e164e936a686aa03a597b8b333> /usr/lib/libcupolicy.dylib 0x1e8dd000 - 0x1e953fff CoreTelephony armv7s <5ce944d4fd813b4499759bbe2c01a593> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony 0x1e954000 - 0x1ea50fff libFontParser.dylib armv7s <93c7009708f63e0cba6134c108b1560a> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib 0x1ea51000 - 0x1eaccfff VideoToolbox armv7s <7df7605fc55e337fa8a1c4a69f92c1ce> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox 0x1eacd000 - 0x1eacdfff FontServices armv7s <9aba5d8858013185bc5906dc7fff63e5> /System/Library/PrivateFrameworks/FontServices.framework/FontServices 0x1eace000 - 0x1ebeafff CoreText armv7s /System/Library/Frameworks/CoreText.framework/CoreText 0x1ebeb000 - 0x1ec02fff ProtocolBuffer armv7s <5df55bcf18e03d67a01b819e3cdcdcf1> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer 0x1ec03000 - 0x1ec2bfff PersistentConnection armv7s <99e7f4327f60321784feb7ebbaba3040> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection 0x1ec2c000 - 0x1ec31fff DataMigration armv7s /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration 0x1ec32000 - 0x1f055fff AudioToolbox armv7s /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox 0x1f056000 - 0x1f203fff QuartzCore armv7s <6fc564d06b643c2fa1098540c1de024a> /System/Library/Frameworks/QuartzCore.framework/QuartzCore 0x1f204000 - 0x1f209fff Netrb armv7s <45ab9318465630109e1fd036f6151980> /System/Library/PrivateFrameworks/Netrb.framework/Netrb 0x1f20a000 - 0x1f217fff libcmph.dylib armv7s <3e6a586936e831139589163f9e791d78> /usr/lib/libcmph.dylib 0x1f218000 - 0x1f234fff libmis.dylib armv7s <256a2c14020431da9ecebafaf23fdba6> /usr/lib/libmis.dylib 0x1f235000 - 0x1f303fff LanguageModeling armv7s /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling 0x1f304000 - 0x1f3ddfff ManagedConfiguration armv7s /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration 0x1f3de000 - 0x1f3f1fff libmarisa.dylib armv7s /usr/lib/libmarisa.dylib 0x1f3f2000 - 0x1f499fff ProofReader armv7s <6aebe575b2d23141a25d8bfa0e4202fc> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader 0x1f49a000 - 0x1f4a3fff MediaAccessibility armv7s <4d4470d525263dea986cdaeba38c2032> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility 0x1f4a4000 - 0x1f4b3fff MobileAsset armv7s /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset 0x1f4b4000 - 0x1f51ffff ColorSync armv7s <7b1005f96d80337f9f253eec37fbf095> /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync 0x1f520000 - 0x1f58dfff MetalPerformanceShaders armv7s /System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders 0x1f58e000 - 0x1f9b3fff FaceCore armv7s <076eac9c9425392f8d4e7160afc75977> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore 0x1f9b4000 - 0x1fa22fff Quagga armv7s /System/Library/PrivateFrameworks/Quagga.framework/Quagga 0x1fa23000 - 0x1fbd0fff CoreImage armv7s /System/Library/Frameworks/CoreImage.framework/CoreImage 0x1fbd1000 - 0x1fc1afff TextInput armv7s /System/Library/PrivateFrameworks/TextInput.framework/TextInput 0x1fc1b000 - 0x1fc2afff libAccessibility.dylib armv7s <79f7ed8a6722343996bd51c621617acb> /usr/lib/libAccessibility.dylib 0x1fc37000 - 0x201b4fff JavaScriptCore armv7s /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore 0x201b5000 - 0x203c5fff StoreServices armv7s /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices 0x203c6000 - 0x2117ffff WebCore armv7s /System/Library/PrivateFrameworks/WebCore.framework/WebCore 0x21180000 - 0x211a1fff libxslt.1.dylib armv7s <0a41ecc015f43b0daa2024482814af6c> /usr/lib/libxslt.1.dylib 0x211a2000 - 0x212fffff WebKitLegacy armv7s <31cca0a04d883d509744786a1c52ac38> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy 0x21300000 - 0x213aefff CoreUI armv7s <77c9f8e34ada3b0cbe9842838632269e> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI 0x213af000 - 0x213cffff DictionaryServices armv7s <3c6341d33e9d3868a4ba9efd8c1e2af8> /System/Library/PrivateFrameworks/DictionaryServices.framework/DictionaryServices 0x213d0000 - 0x213d2fff HangTracer armv7s /System/Library/PrivateFrameworks/HangTracer.framework/HangTracer 0x213d3000 - 0x21421fff PhysicsKit armv7s /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit 0x21422000 - 0x214eafff UIFoundation armv7s /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation 0x214eb000 - 0x221b5fff UIKit armv7s <08ddcc2b89863d0e975caeafc5e99267> /System/Library/Frameworks/UIKit.framework/UIKit 0x221b6000 - 0x221dafff CoreBluetooth armv7s <99601387dbed3a3ab1a86f69e2f2a805> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth 0x221db000 - 0x221fffff DataAccessExpress armv7s /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress 0x22200000 - 0x2221efff NetworkStatistics armv7s /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics 0x2221f000 - 0x22299fff AddressBook armv7s <5f9b2aaefa4d3ca981bbd78c114a89cd> /System/Library/Frameworks/AddressBook.framework/AddressBook 0x2229a000 - 0x223f1fff CoreMotion armv7s <8bfb768c514936fabd9ee46b507f4de7> /System/Library/Frameworks/CoreMotion.framework/CoreMotion 0x223f2000 - 0x22417fff CacheDelete armv7s /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete 0x22418000 - 0x22423fff CoreAUC armv7s /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC 0x22424000 - 0x228c6fff MediaToolbox armv7s /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox 0x228c7000 - 0x22a52fff Celestial armv7s <5b85c309d60833ab919c9c8b569fe69c> /System/Library/PrivateFrameworks/Celestial.framework/Celestial 0x22a53000 - 0x22a61fff IntlPreferences armv7s /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences 0x22a62000 - 0x22a64fff CoreDuetDebugLogging armv7s <30faf3a6660f39d7898365d3dd371dac> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging 0x22a65000 - 0x22a76fff CoreDuetDaemonProtocol armv7s <8e6cb208684f3ce6a5f9365aeb39d183> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol 0x22a77000 - 0x22b36fff CoreDuet armv7s <521384ba0b633b56b152b933893bcb25> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet 0x22b37000 - 0x22cd1fff AVFoundation armv7s <243105d9a6f13373a5d58263f506499e> /System/Library/Frameworks/AVFoundation.framework/AVFoundation 0x22cd2000 - 0x22cfafff libtidy.A.dylib armv7s /usr/lib/libtidy.A.dylib 0x22cfb000 - 0x22d5cfff IMFoundation armv7s <9e6876b725c734579c10706ce3913f45> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation 0x22d5d000 - 0x23367fff GeoServices armv7s /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices 0x23368000 - 0x23369fff DiagnosticLogCollection armv7s <7cb97991869332a1a91791c06bfb2701> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/DiagnosticLogCollection 0x2336a000 - 0x2336bfff Marco armv7s <5709c8d246b135e6848270573fc08a30> /System/Library/PrivateFrameworks/Marco.framework/Marco 0x2336c000 - 0x233eefff CoreLocation armv7s <12dccb52e6eb3f769d8401a50eae830a> /System/Library/Frameworks/CoreLocation.framework/CoreLocation 0x233ef000 - 0x233f3fff ConstantClasses armv7s <189c68f50a2032e0ae20b248cd7de2a1> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses 0x23662000 - 0x236bafff IDSFoundation armv7s /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation 0x236bb000 - 0x2378dfff IDS armv7s /System/Library/PrivateFrameworks/IDS.framework/IDS 0x2378e000 - 0x237a9fff MediaServices armv7s <3e7509618789318099e94f4c501e5036> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices 0x237aa000 - 0x237e8fff AuthKit armv7s <093a5764c61b30a8a6e7a7259dc171ce> /System/Library/PrivateFrameworks/AuthKit.framework/AuthKit 0x237e9000 - 0x237ecfff libheimdal-asn1.dylib armv7s <99793317dbfb3a95b737fea553b94879> /usr/lib/libheimdal-asn1.dylib 0x237ed000 - 0x238affff MediaRemote armv7s <6212b0dcb59a37ab8f2090c43e6cd45c> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote 0x238b0000 - 0x23a19fff MobileSpotlightIndex armv7s <62430feddcb136eeb643a75fa5d1bd35> /System/Library/PrivateFrameworks/MobileSpotlightIndex.framework/MobileSpotlightIndex 0x23a1a000 - 0x23a36fff PlugInKit armv7s /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit 0x23a37000 - 0x23a67fff ProtectedCloudStorage armv7s <4f051c2640d93263af7f963cc942216b> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage 0x23a68000 - 0x23a7dfff libresolv.9.dylib armv7s <468f19123bb231a999239567dd154493> /usr/lib/libresolv.9.dylib 0x23a7e000 - 0x23a91fff ApplePushService armv7s <517dfac8efff3d119d91801f165c3589> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService 0x23a92000 - 0x23ad4fff ContactsFoundation armv7s <5c4e7a8d9af03dbe8108fcd769ec5a6e> /System/Library/PrivateFrameworks/ContactsFoundation.framework/ContactsFoundation 0x23ad5000 - 0x23ad6fff ParsecSubscriptionServiceSupport armv7s /System/Library/PrivateFrameworks/ParsecSubscriptionServiceSupport.framework/ParsecSubscriptionServiceSupport 0x23ad7000 - 0x23b74fff Contacts armv7s <0b1330b3b1533ffb9914aef8ac13c2b4> /System/Library/Frameworks/Contacts.framework/Contacts 0x23b75000 - 0x23bb8fff CoreSpotlight armv7s <0eb374a41f3e32d29ce0d16f24a201e9> /System/Library/Frameworks/CoreSpotlight.framework/CoreSpotlight 0x23bb9000 - 0x23bdcfff vCard armv7s <7143851eddb2398581bd82dd99ae3ed0> /System/Library/PrivateFrameworks/vCard.framework/vCard 0x23bdd000 - 0x23c5dfff VoiceServices armv7s <52b382cd52f13a75831fe78f9dd0ef22> /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices 0x23c5e000 - 0x23caafff SAObjects armv7s /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects 0x23d26000 - 0x23db6fff AssistantServices armv7s <8be15b6abbf6370896e60ce17f130781> /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices 0x23ea0000 - 0x23eb7fff AppleIDSSOAuthentication armv7s <0c6854a3df993c088cfa806537cc450b> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication 0x23ec8000 - 0x23f2efff AppleAccount armv7s /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount 0x23f2f000 - 0x23f33fff CommunicationsFilter armv7s <45f63db448493c8a9ba6038ad3c590be> /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter 0x23f34000 - 0x23f55fff ChunkingLibrary armv7s <91da366c085e3eb3b15281b34a3311c4> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary 0x23f56000 - 0x23f5efff CaptiveNetwork armv7s <0bdee0b3b14d3f0d94bb7cf2615af3ce> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork 0x23f5f000 - 0x23f85fff EAP8021X armv7s /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X 0x23f86000 - 0x23f8cfff AssetCacheServices armv7s /System/Library/PrivateFrameworks/AssetCacheServices.framework/AssetCacheServices 0x23f8d000 - 0x24045fff MMCS armv7s <852cf0c9b0bd3dccae7a4ec6153c7c8d> /System/Library/PrivateFrameworks/MMCS.framework/MMCS 0x24046000 - 0x2406dfff MobileWiFi armv7s /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi 0x2406e000 - 0x240a9fff ContentIndex armv7s <6ed73f38f1813500b37efdd25737d432> /System/Library/PrivateFrameworks/ContentIndex.framework/ContentIndex 0x2411f000 - 0x24125fff CertUI armv7s /System/Library/PrivateFrameworks/CertUI.framework/CertUI 0x241d5000 - 0x241e2fff BaseBoardUI armv7s <42160b95925c3415aff735b49b1fbe93> /System/Library/PrivateFrameworks/BaseBoardUI.framework/BaseBoardUI 0x241e3000 - 0x241f7fff UserManagement armv7s /System/Library/PrivateFrameworks/UserManagement.framework/UserManagement 0x241f8000 - 0x242a2fff CorePDF armv7s /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF 0x2432e000 - 0x24333fff IncomingCallFilter armv7s <23d35d4c1c8439739f82512d9fa5e11e> /System/Library/PrivateFrameworks/IncomingCallFilter.framework/IncomingCallFilter 0x2458f000 - 0x2482ffff WebKit armv7s <0b794b66542e347ea1d3c42b017dcd9f> /System/Library/Frameworks/WebKit.framework/WebKit 0x24830000 - 0x24877fff WebBookmarks armv7s <49cb3e5079733e22945ecfc5a347dc80> /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks 0x24878000 - 0x24998fff ContactsUI armv7s <27064ad6e38f39caa8e73bdefb3193c8> /System/Library/Frameworks/ContactsUI.framework/ContactsUI 0x24999000 - 0x250b2fff ModelIO armv7s <22a490b5e6843df0af6e9904cb247844> /System/Library/Frameworks/ModelIO.framework/ModelIO 0x250b9000 - 0x2512ffff CoreSymbolication armv7s <959ba29433c33bce921f880a19dd63a4> /System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication 0x25130000 - 0x251b9fff TelephonyUtilities armv7s /System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtilities 0x251ba000 - 0x251e7fff GLKit armv7s <98d2af43be533a36bf19ed73a536e119> /System/Library/Frameworks/GLKit.framework/GLKit 0x2545a000 - 0x25523fff AddressBookUI armv7s <47bff623ffe33008865f412085bd110c> /System/Library/Frameworks/AddressBookUI.framework/AddressBookUI 0x25524000 - 0x255eafff CloudKit armv7s /System/Library/Frameworks/CloudKit.framework/CloudKit 0x255eb000 - 0x25659fff iTunesStore armv7s <1c174d3919de37a5881f2ac2c98a1ca9> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore 0x2565a000 - 0x2565ffff CloudPhotoServices armv7s /System/Library/PrivateFrameworks/CloudPhotoServices.framework/CloudPhotoServices 0x25660000 - 0x25739fff CloudPhotoLibrary armv7s /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/CloudPhotoLibrary 0x2578b000 - 0x257affff AssetsLibraryServices armv7s /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices 0x2583d000 - 0x25865fff ACTFramework armv7s <60a3ae731f44369f8f3efa16e39cd04c> /System/Library/PrivateFrameworks/ACTFramework.framework/ACTFramework 0x25866000 - 0x25871fff DCIMServices armv7s /System/Library/PrivateFrameworks/DCIMServices.framework/DCIMServices 0x25872000 - 0x25974fff CoreMediaStream armv7s /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream 0x25975000 - 0x2598cfff PhotosFormats armv7s <1caa214a41b13976b71fd2c9d0f9073b> /System/Library/PrivateFrameworks/PhotosFormats.framework/PhotosFormats 0x2598d000 - 0x25993fff XPCKit armv7s <68646720ead837b6bff123683656c651> /System/Library/PrivateFrameworks/XPCKit.framework/XPCKit 0x25d10000 - 0x25de6fff CameraKit armv7s <45cb0624598435b7b7b5e9738b2df7fa> /System/Library/PrivateFrameworks/CameraKit.framework/CameraKit 0x25de7000 - 0x25dedfff CoreTime armv7s /System/Library/PrivateFrameworks/CoreTime.framework/CoreTime 0x25dee000 - 0x25e06fff MediaStream armv7s <4fdf397db53e31e1af89655e01fad064> /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream 0x25e07000 - 0x26164fff PhotoLibraryServices armv7s <2ce9cc013d003ea9826957c8d44f915f> /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices 0x26197000 - 0x261f9fff libprotobuf.dylib armv7s <990477d0c93b35c3b11914f17487a835> /usr/lib/libprotobuf.dylib 0x261fa000 - 0x2621cfff ScreenReaderCore armv7s <3c1da02b9d4e3bdead4e03519d8de52e> /System/Library/PrivateFrameworks/ScreenReaderCore.framework/ScreenReaderCore 0x2621d000 - 0x262b7fff BulletinBoard armv7s <8fcfa5565c3435488966c97087b747f9> /System/Library/PrivateFrameworks/BulletinBoard.framework/BulletinBoard 0x262b9000 - 0x262d5fff TextToSpeech armv7s <22ba4159d6ba3005b9524c985173901e> /System/Library/PrivateFrameworks/TextToSpeech.framework/TextToSpeech 0x26355000 - 0x26356fff libAXSafeCategoryBundle.dylib armv7s <14932c734fe93bf29d4e4b85294679e1> /usr/lib/libAXSafeCategoryBundle.dylib 0x26357000 - 0x26360fff libAXSpeechManager.dylib armv7s /usr/lib/libAXSpeechManager.dylib 0x26361000 - 0x263f9fff AccessibilityUtilities armv7s <2b2329e5783836068a39ae7140a446d9> /System/Library/PrivateFrameworks/AccessibilityUtilities.framework/AccessibilityUtilities 0x26564000 - 0x26598fff ToneLibrary armv7s <5d85426ecf2d3507a68daa3702864a68> /System/Library/PrivateFrameworks/ToneLibrary.framework/ToneLibrary 0x265c1000 - 0x265ebfff DataDetectorsCore armv7s <7140eddaf0353ebb81373b600685538d> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore 0x265f9000 - 0x26857fff libAWDSupportFramework.dylib armv7s <46d11351900d36269e87e242f4d3d51c> /usr/lib/libAWDSupportFramework.dylib 0x26895000 - 0x268cffff WirelessDiagnostics armv7s /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics 0x269c6000 - 0x269f8fff AXRuntime armv7s /System/Library/PrivateFrameworks/AXRuntime.framework/AXRuntime 0x26a8d000 - 0x26a97fff CoreRecents armv7s <9dd913b5e4c23c82b62de64cdee0ec40> /System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents 0x26a9a000 - 0x26aa3fff AccessibilityUIUtilities armv7s /System/Library/PrivateFrameworks/Accessibility.framework/Frameworks/AccessibilityUIUtilities.framework/AccessibilityUIUtilities 0x26b8f000 - 0x26ba1fff AssetsLibrary armv7s <33615491c04734408fbe96d1efe829d3> /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary 0x26bd8000 - 0x27162fff VectorKit armv7s <1268273bb361308e95b30806ee70a4e5> /System/Library/PrivateFrameworks/VectorKit.framework/VectorKit 0x27163000 - 0x27353fff MapKit armv7s /System/Library/Frameworks/MapKit.framework/MapKit 0x27653000 - 0x276bffff libnetwork.dylib armv7s <00dec2aa15ab3d9aad8f7a2218f3e48e> /usr/lib/libnetwork.dylib 0x276d1000 - 0x2774ffff Network armv7s <6c806f20bb873eb89352fb1d3aa2e012> /System/Library/PrivateFrameworks/Network.framework/Network 0x27756000 - 0x277e3fff Social armv7s /System/Library/Frameworks/Social.framework/Social 0x27acd000 - 0x27acdfff AdSupport armv7s <8eaedbf2d2ff34339bf12ceb3da89de7> /System/Library/Frameworks/AdSupport.framework/AdSupport 0x27b85000 - 0x27ba3fff SharedUtils armv7s /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/SharedUtils 0x27e2c000 - 0x27e3cfff LocalAuthentication armv7s /System/Library/Frameworks/LocalAuthentication.framework/LocalAuthentication 0x28073000 - 0x280edfff CoreRecognition armv7s /System/Library/PrivateFrameworks/CoreRecognition.framework/CoreRecognition 0x28147000 - 0x281aafff WebInspector armv7s /System/Library/PrivateFrameworks/WebInspector.framework/WebInspector 0x28266000 - 0x28313fff ITMLKit armv7s /System/Library/PrivateFrameworks/ITMLKit.framework/ITMLKit 0x28314000 - 0x28516fff SafariShared armv7s <305947889820360a9ffe65e03329e107> /System/Library/PrivateFrameworks/SafariShared.framework/SafariShared 0x28d6d000 - 0x28d9ffff WebUI armv7s /System/Library/PrivateFrameworks/WebUI.framework/WebUI 0x291cf000 - 0x29282fff SafariServices armv7s <404d60faf6523486b548fb68220924fc> /System/Library/Frameworks/SafariServices.framework/SafariServices 0x29b8a000 - 0x29b91fff AccessibilityUI armv7s <12c587e9eb6b37d788f576cf0879d3cf> /System/Library/PrivateFrameworks/Accessibility.framework/Frameworks/AccessibilityUI.framework/AccessibilityUI 0x2a282000 - 0x2a2aefff WirelessProximity armv7s /System/Library/PrivateFrameworks/WirelessProximity.framework/WirelessProximity 0x2b0c7000 - 0x2b121fff CoreBrightness armv7s <3d5635a448ad3b76adf87b4371180599> /System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness 0x2b780000 - 0x2b784fff ZoomServices armv7s /System/Library/PrivateFrameworks/Accessibility.framework/Frameworks/ZoomServices.framework/ZoomServices 0x2b7e4000 - 0x2b835fff CoreSuggestions armv7s <32dd6927db0f3a7aaa578c89850b8466> /System/Library/PrivateFrameworks/CoreSuggestions.framework/CoreSuggestions 0x2dc15000 - 0x2dc20fff AccessibilitySettingsLoader armv7s <5bdf920a0b0e38cba38c404495c8026a> /System/Library/AccessibilityBundles/AccessibilitySettingsLoader.bundle/AccessibilitySettingsLoader 0x2e22e000 - 0x2e23ffff libCGInterfaces.dylib armv7s <1df03bfb453133abb7cc325b03dd4f39> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Libraries/libCGInterfaces.dylib 0x2f10d000 - 0x2f119fff AppleFSCompression armv7s /System/Library/PrivateFrameworks/AppleFSCompression.framework/AppleFSCompression 0x2f11a000 - 0x2f124fff AppleIDAuthSupport armv7s <02d9f05f89a53ff78ed72dc20e192922> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport 0x30469000 - 0x30475fff libGSFontCache.dylib armv7s <422ad89184653e5f81ad719d13ab57d9> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib 0x30476000 - 0x3049efff libTrueTypeScaler.dylib armv7s <325e5eb7a09331c085854d5cac7f250c> /System/Library/PrivateFrameworks/FontServices.framework/libTrueTypeScaler.dylib 0x30511000 - 0x3053afff Futhark armv7s <8fbfdf6aa1c135858726735b70944d37> /System/Library/PrivateFrameworks/Futhark.framework/Futhark 0x31dac000 - 0x31dd2fff SafariSafeBrowsing armv7s /System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/SafariSafeBrowsing 0x327db000 - 0x32961fff libFosl_dynamic.dylib armv7s /usr/lib/libFosl_dynamic.dylib 0x32d12000 - 0x32d3bfff libpcap.A.dylib armv7s /usr/lib/libpcap.A.dylib 0x32d6c000 - 0x32e38fff AVFAudio armv7s <0d640c7237163a23ba0357b13635e926> /System/Library/Frameworks/AVFoundation.framework/Frameworks/AVFAudio.framework/AVFAudio 0x32e39000 - 0x32e41fff ProactiveEventTracker armv7s /System/Library/PrivateFrameworks/ProactiveEventTracker.framework/ProactiveEventTracker 0x32e42000 - 0x32fa3fff Intents armv7s <976a08768b9f33188b4ce1a0d155893e> /System/Library/Frameworks/Intents.framework/Intents 0x330c2000 - 0x330e0fff UserNotifications armv7s <1dc879e30b743d0e8d7b2d8f48eb95fb> /System/Library/Frameworks/UserNotifications.framework/UserNotifications 0x330fd000 - 0x332cdfff CVML armv7s /System/Library/PrivateFrameworks/CVML.framework/CVML 0x333b6000 - 0x3345bfff Navigation armv7s /System/Library/PrivateFrameworks/Navigation.framework/Navigation 0x33541000 - 0x33554fff TextureIO armv7s <84a28a02607b34a0bbc6b6658c47e80c> /System/Library/PrivateFrameworks/TextureIO.framework/TextureIO 0x33988000 - 0x3398afff SpeakTypingServices armv7s <4897bfecc4b436298245e25b4059e289> /System/Library/PrivateFrameworks/Accessibility.framework/Frameworks/SpeakTypingServices.framework/SpeakTypingServices 0x33a16000 - 0x33a53fff ContactsUICore armv7s /System/Library/PrivateFrameworks/ContactsUICore.framework/ContactsUICore 0x341e6000 - 0x34200fff SearchFoundation armv7s /System/Library/PrivateFrameworks/SearchFoundation.framework/SearchFoundation 0x3486e000 - 0x3487efff libBNNS.dylib armv7s <80fce4bab30430e39e156a487e04bcd9> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib 0x3487f000 - 0x34884fff libQuadrature.dylib armv7s /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib 0x34a1a000 - 0x34ab9fff VideoSubscriberAccount armv7s /System/Library/Frameworks/VideoSubscriberAccount.framework/VideoSubscriberAccount 0x34bf2000 - 0x34c01fff CoreEmoji armv7s <6b5329cef4593376b1bb76ea8437a8fd> /System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji 0x34c02000 - 0x34c17fff CoreInterest armv7s /System/Library/PrivateFrameworks/CoreInterest.framework/CoreInterest 0x34db8000 - 0x34e27fff CoreParsec armv7s /System/Library/PrivateFrameworks/CoreParsec.framework/CoreParsec 0x350ed000 - 0x350edfff IntentsFoundation armv7s /System/Library/PrivateFrameworks/IntentsFoundation.framework/IntentsFoundation 0x3520c000 - 0x352f4fff NLP armv7s /System/Library/PrivateFrameworks/NLP.framework/NLP 0x357fd000 - 0x35816fff SafariCore armv7s /System/Library/PrivateFrameworks/SafariCore.framework/SafariCore 0x359e2000 - 0x359e6fff SymptomDiagnosticReporter armv7s <7981ee40fa6d3d1780a23fde3ce05b9e> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/SymptomDiagnosticReporter 0x3604a000 - 0x360dcfff libate.dylib armv7s /usr/lib/libate.dylib 0x360dd000 - 0x360ddfff libcoretls.dylib armv7s <4ca638dda9423b07894af9f9d0053f6d> /usr/lib/libcoretls.dylib 0x360de000 - 0x360dffff libcoretls_cfhelpers.dylib armv7s /usr/lib/libcoretls_cfhelpers.dylib

EOF

huaminhquang commented 6 years ago

Hi,

Do we have Any update on this issue?

huaminhquang commented 6 years ago

Hi,

Do we have Any update on this issue?

huaminhquang commented 6 years ago

Hi,

Do we have Any update on this issue?

MIchaelMainer commented 6 years ago

@huaminhquang I don't have an update no this issue. @spouliot can you help us now that we have the crash log?

spouliot commented 6 years ago

The crash log is not symbolicated, e.g.

4 Graph_Xamarin_CS_SnippetsiOS 0x02c33630 0xd4000 + 45479472
5 Graph_Xamarin_CS_SnippetsiOS 0x02b8b9f2 0xd4000 + 44792306
6 Graph_Xamarin_CS_SnippetsiOS 0x02b59282 0xd4000 + 44585602
7 Graph_Xamarin_CS_SnippetsiOS 0x02b58384 0xd4000 + 44581764
8 Graph_Xamarin_CS_SnippetsiOS 0x02b51c18 0xd4000 + 44555288
9 ??? 0000000000 0 + 0
10 Graph_Xamarin_CS_SnippetsiOS 0x02af4968 0xd4000 + 44173672
11 Graph_Xamarin_CS_SnippetsiOS 0x02af1cc8 0xd4000 + 44162248
12 Graph_Xamarin_CS_SnippetsiOS 0x02ae9040 0xd4000 + 44126272
13 Graph_Xamarin_CS_SnippetsiOS 0x02ae8c5c 0xd4000 + 44125276
14 Graph_Xamarin_CS_SnippetsiOS 0x02ae8358 0xd4000 + 44122968
15 Graph_Xamarin_CS_SnippetsiOS 0x004732a0 0xd4000 + 3797664
16 Graph_Xamarin_CS_SnippetsiOS 0x0046bce0 0xd4000 + 3767520
17 Graph_Xamarin_CS_SnippetsiOS 0x00455f34 0xd4000 + 3678004
18 Graph_Xamarin_CS_SnippetsiOS 0x000f1a60 0xd4000 + 121440
19 Graph_Xamarin_CS_SnippetsiOS 0x003ddf4c 0xd4000 + 3186508
20 Graph_Xamarin_CS_SnippetsiOS 0x02b63ba6 0xd4000 + 44628902
21 Graph_Xamarin_CS_SnippetsiOS 0x02bb4798 0xd4000 + 44959640
22 Graph_Xamarin_CS_SnippetsiOS 0x02bb7114 0xd4000 + 44970260
23 Graph_Xamarin_CS_SnippetsiOS 0x000d9a1e 0xd4000 + 23070
24 Graph_Xamarin_CS_SnippetsiOS 0x000d9f06 0xd4000 + 24326

are all addresses that we don't know how to map to actual code (i.e. it should show your code or Xamarin.iOS code).

This is usually because the crash report was not extracted correctly, e.g. from a computer that does not have the corresponding .dSYM (which is the symbol database).

The crashlog should look like

Incident Identifier: 7A2C51CA-E1B7-4523-A56E-4BBC2F9A0584
CrashReporter Key:   ed5eecf4a894fd4b543ab34bc0c9fdb4a409ab65
Hardware Model:      iPhone7,1
Process:             dont link [876]
Path:                /var/containers/Bundle/Application/DC4E69AD-8C68-4F2A-811E-7D8032DBD58B/dont link.app/dont link
Identifier:          com.xamarin.dontlink
Version:             1.0 (1.0)
Code Type:           ARM (Native)
Parent Process:      launchd [1]

Date/Time:           2018-09-04 09:14:55.55 -0400
Launch Time:         2018-09-04 09:14:35.35 -0400
OS Version:          iOS 9.3.5 (13G36)
Report Version:      105

Exception Type:  00000020
Exception Codes: 0x000000008badf00d
Exception Note:  SIMULATED (this is NOT a crash)
Highlighted by Thread:  0

Application Specific Information:
com.xamarin.dontlink failed to launch after 20.00s (launchIntent: foreground-interactive)

Elapsed total CPU time (seconds): 20.580 (user 20.580, system 0.000), 51% CPU 
Elapsed application CPU time (seconds): 11.112, 28% CPU

Filtered syslog:
None found

Thread 0 name:  tid_c07  Dispatch queue: com.apple.main-thread
Thread 0:
0   libsystem_platform.dylib        0x2511d834 _sigtramp + 0
1   Xamarin.iOS.dll                 0x01bf9e00 wrapper_native_to_managed_ObjCRuntime_Runtime_register_assembly_intptr_int_ + 236
2   Xamarin-debug                   0x0059e980 xamarin_register_assembly + 256384 (delegates.inc:101)
3   Xamarin-debug                   0x005a0878 register_assembly(_MonoAssembly*, unsigned int*) + 264312 (runtime.m:960)
4   Xamarin-debug                   0x005a17e4 xamarin_initialize + 268260 (runtime.m:1372)
5   Xamarin-debug                   0x005b574c xamarin_main + 350028 (monotouch-main.m:429)
6   dont link                       0x001656db main + 562907 (main.m:74)
7   libdyld.dylib                   0x24fa8873 start + 3

where you can see both the managed and native (*.m) symbols from the application. That tells us exactly where the crash happened.

MIchaelMainer commented 5 years ago

Please reopen if you are still experiencing these specific issues.