My app is crashing on startup and this is the crash log I get. Can anyone help me interpret whats going on here?
here is the symbolicated crash report
Thanks.
Looking at the crashed thread I see this:
Thread 0 name: tid_103 Dispatch queue: com.apple.main-thread
Thread 0 Crashed:
0 libsystem_kernel.dylib … __pthread_kill + 8
1 libsystem_pthread.dylib … pthread_kill + 208
2 libsystem_c.dylib … abort + 120
3 vStores.iOS … xamarin_unhandled_exception_handler + 60
4 vStores.iOS … mono_invoke_unhandled_exception_hook + 132
5 vStores.iOS … mono_handle_exception_internal + 5664
6 vStores.iOS … mono_handle_exception + 56
7 vStores.iOS … mono_arm_throw_exception + 360
8 vStores.iOS … throw_exception + 172
9 vStores.iOS … vStores_iOS_Application_Main_string__ + 52
10 vStores.iOS … wrapper_runtime_invoke_object_runtime_invoke_dynamic_intptr_intptr_intptr_intptr + 272
11 vStores.iOS … mono_jit_runtime_invoke + 1136
12 vStores.iOS … mono_runtime_invoke_checked + 148
13 vStores.iOS … mono_runtime_exec_main_checked + 128
14 vStores.iOS … mono_jit_exec + 376
15 vStores.iOS … xamarin_main + 1052
16 vStores.iOS … main + 76
17 dyld … start + 444
Based on the symbol names in the backtrace it seems that your C# code has thrown an unhandled language exception which has caused its runtime to call abort
. I don’t know enough about this third-party runtime to offer further advice here. I recommend you escalate this via their support channel.
Share and Enjoy
—
Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"