I'm trying to track down the source of app crashes in my iOS app. I'm running the app on a device and viewing resulting crash reports in my device's "Device Logs" section in the XCode Organizer - Devices view.
When I view the report, I see the native iOS functions symbolicated, but my app functions (those denoted as XNotesiOS) aren't. Here's a portion of a report:
Thread 0 name: Dispatch queue: com.apple.main-thread
Thread 0 Crashed:
0 libsystem_kernel.dylib 0x3b0cb350 __pthread_kill + 8
1 libsystem_c.dylib 0x3b04211e pthread_kill + 54
2 libsystem_c.dylib 0x3b07e96e abort + 90
3 XNotesiOS 0x00736b1a 0xc4000 + 6761242
4 XNotesiOS 0x0074ebd8 0xc4000 + 6859736
5 libsystem_c.dylib 0x3b04be90 _sigtramp + 40
6 XNotesiOS 0x002cb750 0xc4000 + 2127696
7 XNotesiOS 0x00280304 0xc4000 + 1819396
8 XNotesiOS 0x002823c0 0xc4000 + 1827776
9 XNotesiOS 0x00282318 0xc4000 + 1827608
10 XNotesiOS 0x002922b4 0xc4000 + 1893044
...
30 Foundation 0x337bc0f0 __NSThreadPerformPerform + 456
31 CoreFoundation 0x32e7a680 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 12
32 CoreFoundation 0x32e79ee4 __CFRunLoopDoSources0 + 208
33 CoreFoundation 0x32e78cb2 __CFRunLoopRun + 642
34 CoreFoundation 0x32debeb8 CFRunLoopRunSpecific + 352
35 CoreFoundation 0x32debd44 CFRunLoopRunInMode + 100
36 GraphicsServices 0x369c42e6 GSEventRunModal + 70
I see the dSYM file alongside the compiled .app and .ipa files in my project's bin/iPhone/Debug folder. The project is stored on my MBP's main drive, under my user folder, i.e., /Users/tommybaggett/Workspaces/ etc. I understand that Spotlight has to be aware of where the file is located for Organizer to pull it in. However I would expect that to be the case, given the location.
Has anyone seen this issue and come up with a way to solve it? Thanks in advance for any help offered.
Tommy