Lots of crash reports for AssetCatalogFile::Read(), maybe in background?

We just released an app that uses XCAssets for app slicing, are are getting a lot of crash reports via XCode (1700+ in 3 days). Here is an example offending thread:


0   libsystem_platform.dylib    0x243fe1c4 _platform_memmove$VARIANT$CortexA9 + 136 (memmove_CortexA9.s:166)
1   MyAppNameHere               0x0084054a AssetCatalogFile::Read(unsigned long long, void*, unsigned long long*) + 146 (AssetCatalogFileSystem.mm:47)
2   MyAppNameHere               0x0084005c AssetCatalogFileSystemHandler::Read(FileEntryData&, unsigned long long, void*, unsigned long long*) + 42 (AssetCatalogFileSystem.mm:187)
3   MyAppNameHere               0x006c0d26 FileAccessor::Read(unsigned long long, void*, unsigned long long*) + 40 (VirtualFileSystem.cpp:863)
4   MyAppNameHere               0x00525804 AssetBundleLoadFromFileAsyncOperation::ConvertArchive() + 236 (AssetBundleLoadFromFileAsyncOperation.cpp:74)
5   MyAppNameHere               0x005258d2 AssetBundleLoadFromFileAsyncOperation::ConvertArchiveJob(void*) + 18 (AssetBundleLoadFromFileAsyncOperation.cpp:48)
6   MyAppNameHere               0x005a47ce JobQueue::Exec(JobInfo*, int, int) + 68 (JobQueue.cpp:325)
7   MyAppNameHere               0x005a4780 JobQueue::Steal(JobGroup*, JobInfo*, int, int) + 180 (JobQueue.cpp:444)
8   MyAppNameHere               0x005a4958 JobQueue::ExecuteJobFromQueue() + 74 (JobQueue.cpp:641)
9   MyAppNameHere               0x005a4a26 JobQueue::ProcessJobs(void*, bool*) + 36 (JobQueue.cpp:720)
10  MyAppNameHere               0x005a43bc JobQueue::WorkLoop(void*) + 8 (JobQueue.cpp:754)
11  MyAppNameHere               0x006beca8 Thread::RunThreadWrapper(void*) + 46 (Thread.cpp:40)
12  libsystem_pthread.dylib     0x2440385a _pthread_body + 138 (pthread.c:656)
13  libsystem_pthread.dylib     0x244037ce _pthread_start + 110 (pthread.c:692)
14  libsystem_pthread.dylib     0x24401724 thread_start + 8 (pthread_asm.s:162)


There is no file in my project titled "AssetCatalogFileSystem.mm", which might be in a Unity lib, or is a private iOS class. I've googled for "AssetCatalogFile" and found practically nothing at all, and for "_platform_memmove" I get more results, but nothing specifically related to Asset Catalogs. Since we have not gotten any complaints about the app crashing, nor had we seen it crash ourselves, I came to the conclusion that it might be happening when users wouldn't notice, like in the background. I was able to reproduce the crash when hooked up to Xcode by backgrounding the app while it was doing the initially loading, thus verifying my supposition.


I guess my question is, is there any way to tell from the crash reports if the app was in the background or foreground when it crashed? If it is the case that the app is crashing in the background only, then I think I'm fine with that, as the user would know no better.

There is no file in my project titled "AssetCatalogFileSystem.mm", which might be in a Unity lib, or is a private iOS class.

This is not an iOS class. You can tell by looking at the ‘library’ column of the backtrace you posted. It shows

MyAppNameHere
rather than any OS library.

for

_platform_memmove
I get more results, but nothing specifically related to Asset Catalogs.
_platform_memmove
is a specific implementation of
memmove
, that is, a function that copies bytes around in memory. It’s likely that either the source or destination pointer is invalid (hard to tell because you only posted an excerpt of the crash log).

As this is crashing in Unity code, I think you should raise this with the support channel associated with Unity.

Share and Enjoy

Quinn “The Eskimo!”
Apple Developer Relations, Developer Technical Support, Core OS/Hardware

let myEmail = "eskimo" + "1" + "@apple.com"

WWDC runs Mon, 13 Jun through to Fri, 17 Jun. During that time all of DTS will be at the conference, helping folks out face-to-face. http://developer.apple.com/wwdc/

Thank you for your response, I will ask there too.


Is there a way to tell from the crash report if the app was in the foreground/active or not?


A follow up question regarding the App Store, will this high amount crash reports get our app flagged in some way, or hurt its ranking on the App Store?

Is there a way to tell from the crash report if the app was in the foreground/active or not?

In general, no. However, some crash logs have telltale signs that indicate the state of the app. If you post a full crash log I can take a look.

A follow up question regarding the App Store, will this high amount crash reports get our app flagged in some way, or hurt its ranking on the App Store?

AFAIK Apple does not factor crash frequency into our search rankings. Users tend to factor them into your review stars though )-:

Share and Enjoy

Quinn “The Eskimo!”
Apple Developer Relations, Developer Technical Support, Core OS/Hardware

let myEmail = "eskimo" + "1" + "@apple.com"

WWDC runs Mon, 13 Jun through to Fri, 17 Jun. During that time all of DTS will be at the conference, helping folks out face-to-face. http://developer.apple.com/wwdc/

Thank you again.


I suspect the users don't even know it's crashing as I think it happens in the background. Currently we have 25/27 5-star reviews, and no these are not just our friends 😝.


Here is one of the full crash reports.


Incident Identifier: 9EA4DDB3-E8EA-4B1B-811F-93F4B1B629A0
CrashReporter Key:   ae1f5d6890ced28dd71c21fd618c2469835a3b77
Hardware Model:      iPhone4,1
Process:             MyAppNameHere [2340]
Path:                /private/var/containers/Bundle/Application/DA198F27-7491-47FE-B71F-30A99E225A06/MyAppNameHere.app/MyAppNameHere
Identifier:          com.mycompany.MyAppNameHere
Version:             84 (1.0.0)
Code Type:           ARM (Native)
Parent Process:      launchd [1]


Date/Time:           2016-06-03 13:52:54.54 -0700
Launch Time:         2016-06-03 13:52:25.25 -0700
OS Version:          iOS 9.3.1 (13E238)
Report Version:      104


Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
Exception Subtype: KERN_INVALID_ADDRESS at 0x0907e000
Triggered by Thread:  20


Thread 0 name:
Thread 0:
0   libsystem_kernel.dylib         0x24fce8d0 mach_msg_trap + 20 (syscall_sw.h:105)
1   libsystem_kernel.dylib         0x24fce6d4 mach_msg + 40 (mach_msg.c:103)
2   CoreFoundation                 0x25319b34 __CFRunLoopServiceMachPort + 136 (CFRunLoop.c:2345)
3   CoreFoundation                 0x25317ebc __CFRunLoopRun + 1036 (CFRunLoop.c:2607)
4   CoreFoundation                 0x252672e8 CFRunLoopRunSpecific + 520 (CFRunLoop.c:2814)
5   CoreFoundation                 0x252670d4 CFRunLoopRunInMode + 108 (CFRunLoop.c:2844)
6   GraphicsServices               0x26857ac8 GSEventRunModal + 160 (GSEvent.c:2245)
7   UIKit                         0x2992c0b8 UIApplicationMain + 144 (UIApplication.m:3772)
8   MyAppNameHere               0x0007883a main + 202 (main.mm:32)
9   libdyld.dylib                 0x24f0f872 start + 2 (start_glue.s:64)


Thread 1:
0   libsystem_kernel.dylib         0x24fe3864 __workq_kernreturn + 8
1   libsystem_pthread.dylib       0x25089b34 _pthread_wqthread + 1036 (pthread.c:1999)
2   libsystem_pthread.dylib       0x25089718 start_wqthread + 8 (pthread_asm.s:147)


Thread 2 name:
Thread 2:
0   libsystem_kernel.dylib         0x24fe42f8 kevent_qos + 24
1   libdispatch.dylib             0x24ed9d60 _dispatch_mgr_invoke + 256 (source.c:2542)
2   libdispatch.dylib             0x24ed9abe _dispatch_mgr_thread$VARIANT$mp + 38 (source.c:2573)


Thread 3:
0   libsystem_kernel.dylib         0x24fe3864 __workq_kernreturn + 8
1   libsystem_pthread.dylib       0x25089b34 _pthread_wqthread + 1036 (pthread.c:1999)
2   libsystem_pthread.dylib       0x25089718 start_wqthread + 8 (pthread_asm.s:147)


Thread 4 name:
Thread 4:
0   libsystem_kernel.dylib         0x24fe2998 __psynch_cvwait + 24
1   libsystem_pthread.dylib       0x2508adec _pthread_cond_wait + 536 (pthread_cond.c:536)
2   libsystem_pthread.dylib       0x2508bc98 pthread_cond_wait + 40 (pthread_cancelable.c:310)
3   MyAppNameHere               0x00d451c2 il2cpp::os::posix::PosixWaitObject::Wait(unsigned int, bool) + 330 (PosixWaitObject.cpp:128)
4   MyAppNameHere               0x00d2b6de FinalizerThread(void*) + 202 (GarbageCollector.cpp:35)
5   MyAppNameHere               0x00d41f20 il2cpp::os::Thread::RunWrapper(void*) + 62 (Thread.cpp:106)
6   MyAppNameHere               0x00d470fa il2cpp::os::ThreadImpl::ThreadStartWrapper(void*) + 22 (ThreadImpl.cpp:106)
7   libsystem_pthread.dylib       0x2508b85a _pthread_body + 138 (pthread.c:656)
8   libsystem_pthread.dylib       0x2508b7ce _pthread_start + 110 (pthread.c:692)
9   libsystem_pthread.dylib       0x25089724 thread_start + 8 (pthread_asm.s:162)


Thread 5 name:
Thread 5:
0   libsystem_kernel.dylib         0x24fce920 semaphore_wait_trap + 8 (syscall_sw.h:110)
1   libdispatch.dylib             0x24ed694a _dispatch_semaphore_wait_slow + 190 (semaphore.c:383)
2   MyAppNameHere               0x0070a464 ThreadedStreamBuffer::HandleReadOverflow(unsigned int&, unsigned int&) + 196 (Semaphore.h:25)
3   MyAppNameHere               0x0068a868 BatchDeleteStep2Threaded(void*) + 68 (ThreadedStreamBuffer.h:241)
4   MyAppNameHere               0x00709ca8 Thread::RunThreadWrapper(void*) + 46 (Thread.cpp:40)
5   libsystem_pthread.dylib       0x2508b85a _pthread_body + 138 (pthread.c:656)
6   libsystem_pthread.dylib       0x2508b7ce _pthread_start + 110 (pthread.c:692)
7   libsystem_pthread.dylib       0x25089724 thread_start + 8 (pthread_asm.s:162)


Thread 6 name:
Thread 6:
0   libsystem_kernel.dylib         0x24fce920 semaphore_wait_trap + 8 (syscall_sw.h:110)
1   libdispatch.dylib             0x24ed694a _dispatch_semaphore_wait_slow + 190 (semaphore.c:383)
2   MyAppNameHere               0x0072b85c AsyncReadManagerThreaded::ThreadEntry() + 136 (Semaphore.h:25)
3   MyAppNameHere               0x0072b5c0 AsyncReadManagerThreaded::StaticThreadEntry(void*) + 8 (AsyncReadManagerThreaded.cpp:55)
4   MyAppNameHere               0x00709ca8 Thread::RunThreadWrapper(void*) + 46 (Thread.cpp:40)
5   libsystem_pthread.dylib       0x2508b85a _pthread_body + 138 (pthread.c:656)
6   libsystem_pthread.dylib       0x2508b7ce _pthread_start + 110 (pthread.c:692)
7   libsystem_pthread.dylib       0x25089724 thread_start + 8 (pthread_asm.s:162)


Thread 7 name:
Thread 7:
0   libsystem_kernel.dylib         0x24fce920 semaphore_wait_trap + 8 (syscall_sw.h:110)
1   libdispatch.dylib             0x24ed694a _dispatch_semaphore_wait_slow + 190 (semaphore.c:383)
2   MyAppNameHere               0x005effd0 CappedSemaphore::WaitForSignal() + 42 (Semaphore.h:25)
3   MyAppNameHere               0x005efa42 JobQueue::ProcessJobs(void*, bool*) + 64 (JobQueue.cpp:733)
4   MyAppNameHere               0x005ef3bc JobQueue::WorkLoop(void*) + 8 (JobQueue.cpp:754)
5   MyAppNameHere               0x00709ca8 Thread::RunThreadWrapper(void*) + 46 (Thread.cpp:40)
6   libsystem_pthread.dylib       0x2508b85a _pthread_body + 138 (pthread.c:656)
7   libsystem_pthread.dylib       0x2508b7ce _pthread_start + 110 (pthread.c:692)
8   libsystem_pthread.dylib       0x25089724 thread_start + 8 (pthread_asm.s:162)


Thread 8 name:
Thread 8:
0   libsystem_kernel.dylib         0x24fce8d0 mach_msg_trap + 20 (syscall_sw.h:105)
1   libsystem_kernel.dylib         0x24fce6d4 mach_msg + 40 (mach_msg.c:103)
2   CoreFoundation                 0x25319b34 __CFRunLoopServiceMachPort + 136 (CFRunLoop.c:2345)
3   CoreFoundation                 0x25317ebc __CFRunLoopRun + 1036 (CFRunLoop.c:2607)
4   CoreFoundation                 0x252672e8 CFRunLoopRunSpecific + 520 (CFRunLoop.c:2814)
5   CoreFoundation                 0x252670d4 CFRunLoopRunInMode + 108 (CFRunLoop.c:2844)
6   Foundation                     0x25ab0174 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268 (NSRunLoop.m:366)
7   Foundation                     0x25afea24 -[NSRunLoop(NSRunLoop) run] + 80 (NSRunLoop.m:388)
8   MyAppNameHere               0x0007b0ba __UnitySendWWWConnection_block_invoke + 374 (WWWConnection.mm:343)
9   libdispatch.dylib             0x24ec5822 _dispatch_call_block_and_release + 10 (init.c:760)
10  libdispatch.dylib             0x24ed45e8 _dispatch_root_queue_drain + 1560 (inline_internal.h:1063)
11  libdispatch.dylib             0x24ed3fcc _dispatch_worker_thread3 + 96 (queue.c:4249)
12  libsystem_pthread.dylib       0x25089b28 _pthread_wqthread + 1024 (pthread.c:1990)
13  libsystem_pthread.dylib       0x25089718 start_wqthread + 8 (pthread_asm.s:147)


Thread 9 name:
Thread 9:
0   libsystem_kernel.dylib         0x24fce8d0 mach_msg_trap + 20 (syscall_sw.h:105)
1   libsystem_kernel.dylib         0x24fce6d4 mach_msg + 40 (mach_msg.c:103)
2   CoreFoundation                 0x25319b34 __CFRunLoopServiceMachPort + 136 (CFRunLoop.c:2345)
3   CoreFoundation                 0x25317ebc __CFRunLoopRun + 1036 (CFRunLoop.c:2607)
4   CoreFoundation                 0x252672e8 CFRunLoopRunSpecific + 520 (CFRunLoop.c:2814)
5   CoreFoundation                 0x252670d4 CFRunLoopRunInMode + 108 (CFRunLoop.c:2844)
6   CFNetwork                     0x258b8946 +[NSURLConnection(Loader) _resourceLoadLoop:] + 486 (NSURLConnection.mm:325)
7   Foundation                     0x25b81484 __NSThread__start__ + 1148 (NSThread.m:1134)
8   libsystem_pthread.dylib       0x2508b85a _pthread_body + 138 (pthread.c:656)
9   libsystem_pthread.dylib       0x2508b7ce _pthread_start + 110 (pthread.c:692)
10  libsystem_pthread.dylib       0x25089724 thread_start + 8 (pthread_asm.s:162)


Thread 10 name:
Thread 10:
0   libsystem_kernel.dylib         0x24fce8d0 mach_msg_trap + 20 (syscall_sw.h:105)
1   libsystem_kernel.dylib         0x24fce6d4 mach_msg + 40 (mach_msg.c:103)
2   CoreFoundation                 0x25319b34 __CFRunLoopServiceMachPort + 136 (CFRunLoop.c:2345)
3   CoreFoundation                 0x25317ebc __CFRunLoopRun + 1036 (CFRunLoop.c:2607)
4   CoreFoundation                 0x252672e8 CFRunLoopRunSpecific + 520 (CFRunLoop.c:2814)
5   CoreFoundation                 0x252670d4 CFRunLoopRunInMode + 108 (CFRunLoop.c:2844)
6   libAVFAudio.dylib             0x2ac17224 GenericRunLoopThread::Entry(void*) + 132 (GenericRunLoopThread.h:102)
7   libAVFAudio.dylib             0x2abec176 CAPThread::Entry(CAPThread*) + 154 (CAPThread.cpp:275)
8   libsystem_pthread.dylib       0x2508b85a _pthread_body + 138 (pthread.c:656)
9   libsystem_pthread.dylib       0x2508b7ce _pthread_start + 110 (pthread.c:692)
10  libsystem_pthread.dylib       0x25089724 thread_start + 8 (pthread_asm.s:162)


Thread 11:
0   libsystem_kernel.dylib         0x24fe3864 __workq_kernreturn + 8
1   libsystem_pthread.dylib       0x25089b34 _pthread_wqthread + 1036 (pthread.c:1999)
2   libsystem_pthread.dylib       0x25089718 start_wqthread + 8 (pthread_asm.s:147)


Thread 12 name:
Thread 12:
0   libsystem_kernel.dylib         0x24fe2eec __select + 20
1   CoreFoundation                 0x2531ef82 __CFSocketManager + 566 (CFSocket.c:2128)
2   libsystem_pthread.dylib       0x2508b85a _pthread_body + 138 (pthread.c:656)
3   libsystem_pthread.dylib       0x2508b7ce _pthread_start + 110 (pthread.c:692)
4   libsystem_pthread.dylib       0x25089724 thread_start + 8 (pthread_asm.s:162)


Thread 13:
0   libsystem_kernel.dylib         0x24fce920 semaphore_wait_trap + 8 (syscall_sw.h:110)
1   MyAppNameHere               0x00cd1b74 FMOD_OS_Semaphore_Wait(FMOD_OS_SEMAPHORE*) + 32
2   MyAppNameHere               0x00cef24c FMOD::Thread::callback(void*) + 68
3   libsystem_pthread.dylib       0x2508b85a _pthread_body + 138 (pthread.c:656)
4   libsystem_pthread.dylib       0x2508b7ce _pthread_start + 110 (pthread.c:692)
5   libsystem_pthread.dylib       0x25089724 thread_start + 8 (pthread_asm.s:162)


Thread 14 name:
Thread 14:
0   libsystem_kernel.dylib         0x24fce8d0 mach_msg_trap + 20 (syscall_sw.h:105)
1   libsystem_kernel.dylib         0x24fce6d4 mach_msg + 40 (mach_msg.c:103)
2   AudioToolbox                   0x277a31d8 AURemoteIO::IOThread::Run() + 104 (AURemoteIO.cpp:1495)
3   AudioToolbox                   0x277a6a88 AURemoteIO::IOThread::Entry(void*) + 8 (AURemoteIO.h:279)
4   AudioToolbox                   0x276bf5ae CAPThread::Entry(CAPThread*) + 186 (CAPThread.cpp:275)
5   libsystem_pthread.dylib       0x2508b85a _pthread_body + 138 (pthread.c:656)
6   libsystem_pthread.dylib       0x2508b7ce _pthread_start + 110 (pthread.c:692)
7   libsystem_pthread.dylib       0x25089724 thread_start + 8 (pthread_asm.s:162)


Thread 15:
0   libsystem_kernel.dylib         0x24fe2ffc __semwait_signal + 24
1   libsystem_c.dylib             0x24f36eec nanosleep + 172 (nanosleep.c:104)
2   libsystem_c.dylib             0x24f36e3a usleep + 50 (usleep.c:52)
3   MyAppNameHere               0x00cd16f4 FMOD_OS_Time_Sleep(unsigned int) + 20
4   MyAppNameHere               0x00cef230 FMOD::Thread::callback(void*) + 40
5   libsystem_pthread.dylib       0x2508b85a _pthread_body + 138 (pthread.c:656)
6   libsystem_pthread.dylib       0x2508b7ce _pthread_start + 110 (pthread.c:692)
7   libsystem_pthread.dylib       0x25089724 thread_start + 8 (pthread_asm.s:162)


Thread 16 name:
Thread 16:
0   libsystem_kernel.dylib         0x24fce8d0 mach_msg_trap + 20 (syscall_sw.h:105)
1   libsystem_kernel.dylib         0x24fce6d4 mach_msg + 40 (mach_msg.c:103)
2   CoreFoundation                 0x25319b34 __CFRunLoopServiceMachPort + 136 (CFRunLoop.c:2345)
3   CoreFoundation                 0x25317ebc __CFRunLoopRun + 1036 (CFRunLoop.c:2607)
4   CoreFoundation                 0x252672e8 CFRunLoopRunSpecific + 520 (CFRunLoop.c:2814)
5   CoreFoundation                 0x252a7e92 CFRunLoopRun + 98 (CFRunLoop.c:2837)
6   CoreMotion                     0x2a55edb8 CLMotionCore::runMotionThread(void*) + 940 (CLMotionCore.mm:258)
7   libsystem_pthread.dylib       0x2508b85a _pthread_body + 138 (pthread.c:656)
8   libsystem_pthread.dylib       0x2508b7ce _pthread_start + 110 (pthread.c:692)
9   libsystem_pthread.dylib       0x25089724 thread_start + 8 (pthread_asm.s:162)


Thread 17 name:
Thread 17:
0   libsystem_kernel.dylib         0x24fce920 semaphore_wait_trap + 8 (syscall_sw.h:110)
1   libdispatch.dylib             0x24ed694a _dispatch_semaphore_wait_slow + 190 (semaphore.c:383)
2   MyAppNameHere               0x006cfe90 PreloadManager::Run() + 62 (Semaphore.h:25)
3   MyAppNameHere               0x006cfe4e PreloadManager::Run(void*) + 8 (PreloadManager.cpp:199)
4   MyAppNameHere               0x00709ca8 Thread::RunThreadWrapper(void*) + 46 (Thread.cpp:40)
5   libsystem_pthread.dylib       0x2508b85a _pthread_body + 138 (pthread.c:656)
6   libsystem_pthread.dylib       0x2508b7ce _pthread_start + 110 (pthread.c:692)
7   libsystem_pthread.dylib       0x25089724 thread_start + 8 (pthread_asm.s:162)


Thread 18 name:
Thread 18:
0   libsystem_kernel.dylib         0x24fce8d0 mach_msg_trap + 20 (syscall_sw.h:105)
1   libsystem_kernel.dylib         0x24fce6d4 mach_msg + 40 (mach_msg.c:103)
2   CoreFoundation                 0x25319b34 __CFRunLoopServiceMachPort + 136 (CFRunLoop.c:2345)
3   CoreFoundation                 0x25317ebc __CFRunLoopRun + 1036 (CFRunLoop.c:2607)
4   CoreFoundation                 0x252672e8 CFRunLoopRunSpecific + 520 (CFRunLoop.c:2814)
5   CoreFoundation                 0x252670d4 CFRunLoopRunInMode + 108 (CFRunLoop.c:2844)
6   Foundation                     0x25ab0174 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268 (NSRunLoop.m:366)
7   Foundation                     0x25afea24 -[NSRunLoop(NSRunLoop) run] + 80 (NSRunLoop.m:388)
8   MyAppNameHere               0x00d6a1cc +[GAI threadMain:] + 64 (GAI.m:228)
9   Foundation                     0x25b81484 __NSThread__start__ + 1148 (NSThread.m:1134)
10  libsystem_pthread.dylib       0x2508b85a _pthread_body + 138 (pthread.c:656)
11  libsystem_pthread.dylib       0x2508b7ce _pthread_start + 110 (pthread.c:692)
12  libsystem_pthread.dylib       0x25089724 thread_start + 8 (pthread_asm.s:162)


Thread 19 name:
Thread 19:
0   libsystem_kernel.dylib         0x24fce920 semaphore_wait_trap + 8 (syscall_sw.h:110)
1   libdispatch.dylib             0x24ed694a _dispatch_semaphore_wait_slow + 190 (semaphore.c:383)
2   MyAppNameHere               0x005effd0 CappedSemaphore::WaitForSignal() + 42 (Semaphore.h:25)
3   MyAppNameHere               0x005efa42 JobQueue::ProcessJobs(void*, bool*) + 64 (JobQueue.cpp:733)
4   MyAppNameHere               0x005ef3bc JobQueue::WorkLoop(void*) + 8 (JobQueue.cpp:754)
5   MyAppNameHere               0x00709ca8 Thread::RunThreadWrapper(void*) + 46 (Thread.cpp:40)
6   libsystem_pthread.dylib       0x2508b85a _pthread_body + 138 (pthread.c:656)
7   libsystem_pthread.dylib       0x2508b7ce _pthread_start + 110 (pthread.c:692)
8   libsystem_pthread.dylib       0x25089724 thread_start + 8 (pthread_asm.s:162)


Thread 20 name:
Thread 20 Crashed:
0   libsystem_platform.dylib       0x250861c4 _platform_memmove$VARIANT$CortexA9 + 136 (memmove_CortexA9.s:166)
1   MyAppNameHere               0x0088b54a AssetCatalogFile::Read(unsigned long long, void*, unsigned long long*) + 146 (AssetCatalogFileSystem.mm:47)
2   MyAppNameHere               0x0088b05c AssetCatalogFileSystemHandler::Read(FileEntryData&, unsigned long long, void*, unsigned long long*) + 42 (AssetCatalogFileSystem.mm:187)
3   MyAppNameHere               0x0070bd26 FileAccessor::Read(unsigned long long, void*, unsigned long long*) + 40 (VirtualFileSystem.cpp:863)
4   MyAppNameHere               0x00570804 AssetBundleLoadFromFileAsyncOperation::ConvertArchive() + 236 (AssetBundleLoadFromFileAsyncOperation.cpp:74)
5   MyAppNameHere               0x005708d2 AssetBundleLoadFromFileAsyncOperation::ConvertArchiveJob(void*) + 18 (AssetBundleLoadFromFileAsyncOperation.cpp:48)
6   MyAppNameHere               0x005ef7ce JobQueue::Exec(JobInfo*, int, int) + 68 (JobQueue.cpp:325)
7   MyAppNameHere               0x005ef780 JobQueue::Steal(JobGroup*, JobInfo*, int, int) + 180 (JobQueue.cpp:444)
8   MyAppNameHere               0x005ef958 JobQueue::ExecuteJobFromQueue() + 74 (JobQueue.cpp:641)
9   MyAppNameHere               0x005efa26 JobQueue::ProcessJobs(void*, bool*) + 36 (JobQueue.cpp:720)
10  MyAppNameHere               0x005ef3bc JobQueue::WorkLoop(void*) + 8 (JobQueue.cpp:754)
11  MyAppNameHere               0x00709ca8 Thread::RunThreadWrapper(void*) + 46 (Thread.cpp:40)
12  libsystem_pthread.dylib       0x2508b85a _pthread_body + 138 (pthread.c:656)
13  libsystem_pthread.dylib       0x2508b7ce _pthread_start + 110 (pthread.c:692)
14  libsystem_pthread.dylib       0x25089724 thread_start + 8 (pthread_asm.s:162)


Thread 21 name:
Thread 21:
0   MyAppNameHere               0x00709994 AtomicQueue::Dequeue() + 28 (ExtendedAtomicOps-arm.h:647)
1   MyAppNameHere               0x005ef92c JobQueue::ExecuteJobFromQueue() + 30 (JobQueue.cpp:625)
2   MyAppNameHere               0x005efa26 JobQueue::ProcessJobs(void*, bool*) + 36 (JobQueue.cpp:720)
3   MyAppNameHere               0x005ef3bc JobQueue::WorkLoop(void*) + 8 (JobQueue.cpp:754)
4   MyAppNameHere               0x00709ca8 Thread::RunThreadWrapper(void*) + 46 (Thread.cpp:40)
5   libsystem_pthread.dylib       0x2508b85a _pthread_body + 138 (pthread.c:656)
6   libsystem_pthread.dylib       0x2508b7ce _pthread_start + 110 (pthread.c:692)
7   libsystem_pthread.dylib       0x25089724 thread_start + 8 (pthread_asm.s:162)


Thread 22:
0   libsystem_kernel.dylib         0x24fe3864 __workq_kernreturn + 8
1   libsystem_pthread.dylib       0x25089b34 _pthread_wqthread + 1036 (pthread.c:1999)
2   libsystem_pthread.dylib       0x25089718 start_wqthread + 8 (pthread_asm.s:147)


Thread 23:
0   libsystem_kernel.dylib         0x24fe3864 __workq_kernreturn + 8
1   libsystem_pthread.dylib       0x25089b34 _pthread_wqthread + 1036 (pthread.c:1999)
2   libsystem_pthread.dylib       0x25089718 start_wqthread + 8 (pthread_asm.s:147)


Thread 24 name:
Thread 24:
0   libsystem_kernel.dylib         0x24fce920 semaphore_wait_trap + 8 (syscall_sw.h:110)
1   libdispatch.dylib             0x24ed694a _dispatch_semaphore_wait_slow + 190 (semaphore.c:383)
2   MediaToolbox                   0x2a62c55c fpa_AsyncMovieControlThread + 1916 (FigPlayer_Async.c:1248)
3   CoreMedia                     0x2730ea10 figThreadMain + 208 (DarwinThread.c:771)
4   libsystem_pthread.dylib       0x2508b85a _pthread_body + 138 (pthread.c:656)
5   libsystem_pthread.dylib       0x2508b7ce _pthread_start + 110 (pthread.c:692)
6   libsystem_pthread.dylib       0x25089724 thread_start + 8 (pthread_asm.s:162)


Thread 25:
0   libsystem_kernel.dylib         0x24fce938 semaphore_timedwait_trap + 8 (syscall_sw.h:112)
1   libdispatch.dylib             0x24ed690a _dispatch_semaphore_wait_slow + 126 (semaphore.c:334)
2   libdispatch.dylib             0x24ed5f98 _dispatch_worker_thread + 116 (queue.c:4323)
3   libsystem_pthread.dylib       0x2508b85a _pthread_body + 138 (pthread.c:656)
4   libsystem_pthread.dylib       0x2508b7ce _pthread_start + 110 (pthread.c:692)
5   libsystem_pthread.dylib       0x25089724 thread_start + 8 (pthread_asm.s:162)


Thread 20 crashed with ARM Thread State (32-bit):
    r0: 0x05b50010    r1: 0x0907e000      r2: 0x0001ffc0      r3: 0xfcad2010
    r4: 0x00480000    r5: 0x17e1b800      r6: 0x00020000      r7: 0x1f9709d8
    r8: 0x00000000    r9: 0x08bfe000     r10: 0x00000000     r11: 0x00000000
    ip: 0x00000000    sp: 0x1f9709d0      lr: 0x0088b54b      pc: 0x250861c4
  cpsr: 0x20000010


Binary Images:
0x71000 - 0xfd4fff MyAppNameHere armv7  <0686c610e19933f1ac3a451ad302061b> /var/containers/Bundle/Application/DA198F27-7491-47FE-B71F-30A99E225A06/MyAppNameHere.app/MyAppNameHere
0x1fe1e000 - 0x1fe45fff dyld armv7  <623928dbdaf93c6bb910215186f4815f> /usr/lib/dyld
0x24a80000 - 0x24a81fff libSystem.B.dylib armv7  <3dfad2c347673acc91c17bcf3252c0df> /usr/lib/libSystem.B.dylib
0x24a82000 - 0x24acdfff libc++.1.dylib armv7  <017dba6c16b63f9ebecb9ddd0d0a4520> /usr/lib/libc++.1.dylib
0x24ace000 - 0x24ae8fff libc++abi.dylib armv7  <d32373f6c2153a509f6603750d213ffb> /usr/lib/libc++abi.dylib
0x24aec000 - 0x24e56fff libobjc.A.dylib armv7  <94f6d325c1843f45b3a439b86fc9de15> /usr/lib/libobjc.A.dylib
0x24e57000 - 0x24e5bfff libcache.dylib armv7  <77c04b32e9b63d5295cc8a721c252137> /usr/lib/system/libcache.dylib
0x24e5c000 - 0x24e65fff libcommonCrypto.dylib armv7  <1247a256d5003bb58d4000e80cd0db55> /usr/lib/system/libcommonCrypto.dylib
0x24e66000 - 0x24e6bfff libcompiler_rt.dylib armv7  <f9f0ad8d115c391ca328a2eb9d91a683> /usr/lib/system/libcompiler_rt.dylib
0x24e6c000 - 0x24e72fff libcopyfile.dylib armv7  <d9b8da1ff5283168a21f54b74e5c6cab> /usr/lib/system/libcopyfile.dylib
0x24e73000 - 0x24ec2fff libcorecrypto.dylib armv7  <29c4bc7ca4d433828f19c06a5cf3ca32> /usr/lib/system/libcorecrypto.dylib
0x24ec3000 - 0x24f0cfff libdispatch.dylib armv7  <29953b5a3c7c3b0da436b37bec3394f3> /usr/lib/system/libdispatch.dylib
0x24f0d000 - 0x24f0ffff libdyld.dylib armv7  <364eae8157b63a128829f2b9dab75538> /usr/lib/system/libdyld.dylib
0x24f10000 - 0x24f10fff libkeymgr.dylib armv7  <d50db9c55305337cac7c5902e9e11ede> /usr/lib/system/libkeymgr.dylib
0x24f11000 - 0x24f11fff liblaunch.dylib armv7  <d52cdc152878328c903c22e451ad2731> /usr/lib/system/liblaunch.dylib
0x24f12000 - 0x24f15fff libmacho.dylib armv7  <f6327d5ee4cc3a14b0c690b0bbb5d495> /usr/lib/system/libmacho.dylib
0x24f16000 - 0x24f17fff libremovefile.dylib armv7  <2d1fd6c142f73c8698e0514b2103df5c> /usr/lib/system/libremovefile.dylib
0x24f18000 - 0x24f2afff libsystem_asl.dylib armv7  <9ec60f2ee90130f2b548dbbeec628e5c> /usr/lib/system/libsystem_asl.dylib
0x24f2b000 - 0x24f2bfff libsystem_blocks.dylib armv7  <b4b8d5044367323a9b129f3a7d81b4e9> /usr/lib/system/libsystem_blocks.dylib
0x24f2c000 - 0x24f90fff libsystem_c.dylib armv7  <88b8e2fdaa173ce2bcbecfafdafca49d> /usr/lib/system/libsystem_c.dylib
0x24f91000 - 0x24f93fff libsystem_configuration.dylib armv7  <72e4dcd20a443c0eb918ed2a243b309d> /usr/lib/system/libsystem_configuration.dylib
0x24f94000 - 0x24f97fff libsystem_containermanager.dylib armv7  <1cff68c5ac573cca935a8c92c51e8e24> /usr/lib/system/libsystem_containermanager.dylib
0x24f98000 - 0x24f99fff libsystem_coreservices.dylib armv7  <128b3c55be3d3ec3b86785ca435a9e43> /usr/lib/system/libsystem_coreservices.dylib
0x24f9a000 - 0x24fabfff libsystem_coretls.dylib armv7  <1596440503463c6492f00910534cfeb8> /usr/lib/system/libsystem_coretls.dylib
0x24fac000 - 0x24fb2fff libsystem_dnssd.dylib armv7  <78016baa00c4388597f514c308f4aae0> /usr/lib/system/libsystem_dnssd.dylib
0x24fb3000 - 0x24fcdfff libsystem_info.dylib armv7  <c7b2843e7b603832a0430974e4ef035b> /usr/lib/system/libsystem_info.dylib
0x24fce000 - 0x24fe8fff libsystem_kernel.dylib armv7  <7828b66e1d81352fb0c90543407a1355> /usr/lib/system/libsystem_kernel.dylib
0x24fe9000 - 0x25009fff libsystem_m.dylib armv7  <4de82221ee263865aaabfbe80c55afc9> /usr/lib/system/libsystem_m.dylib
0x2500a000 - 0x2501cfff libsystem_malloc.dylib armv7  <1b1e0207a752307fa30be17aeeaa0606> /usr/lib/system/libsystem_malloc.dylib
0x2501d000 - 0x25070fff libsystem_network.dylib armv7  <0a3d9d44338136b0b0f9bd3914e7db0e> /usr/lib/system/libsystem_network.dylib
0x25071000 - 0x25078fff libsystem_networkextension.dylib armv7  <d766f66f8d1f3d2fa5540d5c20fa63c5> /usr/lib/system/libsystem_networkextension.dylib
0x25079000 - 0x25080fff libsystem_notify.dylib armv7  <949bb4c30f2139db895c612f230f1f1d> /usr/lib/system/libsystem_notify.dylib
0x25081000 - 0x25087fff libsystem_platform.dylib armv7  <7a892bf09afb39f28f596dcfb829612e> /usr/lib/system/libsystem_platform.dylib
0x25088000 - 0x2508ffff libsystem_pthread.dylib armv7  <df1dcaad51bd390cbec131a89706b5be> /usr/lib/system/libsystem_pthread.dylib
0x25090000 - 0x25092fff libsystem_sandbox.dylib armv7  <4c67063d8a393d548ff45f595e22ac86> /usr/lib/system/libsystem_sandbox.dylib
0x25093000 - 0x250a1fff libsystem_trace.dylib armv7  <2171e90d32aa3f609692c2f8e0d4b1a0> /usr/lib/system/libsystem_trace.dylib
0x250a2000 - 0x250a2fff libunwind.dylib armv7  <a394593b9bbe3106873aceb3682cd4bd> /usr/lib/system/libunwind.dylib
0x250a3000 - 0x250a3fff libvminterpose.dylib armv7  <6301915f74e33954abe0fa0c1dda0ac2> /usr/lib/system/libvminterpose.dylib
0x250a4000 - 0x250c2fff libxpc.dylib armv7  <3aae9a195452356fbace176a3dc38e7b> /usr/lib/system/libxpc.dylib
0x250c3000 - 0x25250fff libicucore.A.dylib armv7  <4afae3bcf8b73f71bd2917b34cd0a1ff> /usr/lib/libicucore.A.dylib
0x25251000 - 0x2525dfff libz.1.dylib armv7  <f45b8e232d25324db59b2de0c905946a> /usr/lib/libz.1.dylib
0x2525e000 - 0x25595fff CoreFoundation armv7  <60e1d0255e103eac9a6aeacad668cd6f> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
0x25596000 - 0x255a2fff libbsm.0.dylib armv7  <524609a8ee323a04a0fb962be8d816dd> /usr/lib/libbsm.0.dylib
0x255a3000 - 0x255a3fff libenergytrace.dylib armv7  <3f0673f65ab53eb3b4501a16140d0384> /usr/lib/libenergytrace.dylib
0x255a4000 - 0x255fffff IOKit armv7  <73f25f93c04433a6a1939fa471b09fed> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x25600000 - 0x2561cfff libMobileGestalt.dylib armv7  <69a88b36f89e389896bc10b98a8d7dd4> /usr/lib/libMobileGestalt.dylib
0x2561d000 - 0x256d3fff libxml2.2.dylib armv7  <5e5e10a4d19e398d97855e5515691090> /usr/lib/libxml2.2.dylib
0x256d4000 - 0x2572ffff Security armv7  <0d5edc7ce0b6392990212b99f013c7c2> /System/Library/Frameworks/Security.framework/Security
0x25730000 - 0x25778fff SystemConfiguration armv7  <16c32558423f3bf58c6b867a4f6ffae3> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
0x25779000 - 0x25830fff libsqlite3.dylib armv7  <191466f10f943213acae502ee3d48382> /usr/lib/libsqlite3.dylib
0x25831000 - 0x25a29fff CFNetwork armv7  <7f5e9cd3faec3f6abe1a2e383e0346cf> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
0x25a2a000 - 0x25a34fff libbz2.1.0.dylib armv7  <7439fad6b6a836429fa11d711213728b> /usr/lib/libbz2.1.0.dylib
0x25a35000 - 0x25a4afff liblzma.5.dylib armv7  <8ee3facc25bd3957b49ff0b4d657e0ef> /usr/lib/liblzma.5.dylib
0x25a4b000 - 0x25a60fff libCRFSuite.dylib armv7  <2ca4911a330736688ebd585895af032a> /usr/lib/libCRFSuite.dylib
0x25a61000 - 0x25a83fff libarchive.2.dylib armv7  <e90ef3b8b0b5302b9cbed3d0840a9e0b> /usr/lib/libarchive.2.dylib
0x25a84000 - 0x25a9ffff libextension.dylib armv7  <f3466097cca237faba733b484c0eb6b0> /usr/lib/libextension.dylib
0x25aa0000 - 0x25aa4fff liblangid.dylib armv7  <8072b6f6bab438de87ec0e930704c5dc> /usr/lib/liblangid.dylib
0x25aa5000 - 0x25cdcfff Foundation armv7  <dec9cedc6afc34b98a290f85cf652f71> /System/Library/Frameworks/Foundation.framework/Foundation
0x25cdd000 - 0x25dbbfff libBLAS.dylib armv7  <3b647903060439dd81b6d852b828c808> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
0x25dbc000 - 0x26085fff libLAPACK.dylib armv7  <76d8234bfe563de18b6a3f8c9727ef6b> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
0x26086000 - 0x262defff vImage armv7  <b0481939c3043e19b603874339d52b73> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
0x262df000 - 0x262f0fff libvMisc.dylib armv7  <b015ecd2bcbc32a9b1327291ec187e8d> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
0x262f1000 - 0x26302fff libLinearAlgebra.dylib armv7  <dd988766e0b237f88de69b7df319f973> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
0x26303000 - 0x26317fff libSparseBLAS.dylib armv7  <828a031fc42635aa95ce451bb693f210> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib
0x26318000 - 0x2638dfff libvDSP.dylib armv7  <81660ad7288639ab82dfd36518c90cb4> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
0x2638e000 - 0x2638efff vecLib armv7  <ce714ab612c534a1b1cbd498bd851006> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
0x2638f000 - 0x2638ffff Accelerate armv7  <f2de5d457ef1361c84503912a662de48> /System/Library/Frameworks/Accelerate.framework/Accelerate
0x26390000 - 0x2684dfff CoreGraphics armv7  <c1da47d89aeb3bdaa1985ac242709f96> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
0x2684e000 - 0x2685ffff GraphicsServices armv7  <51f7c97749993d2e80afbc33fc5a77fe> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
0x26860000 - 0x2689ffff AppSupport armv7  <a80a35a5a23c3430ab804955c862c937> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
0x268a0000 - 0x2695bfff MobileCoreServices armv7  <f3c5e3ebbc1137258340700798fab155> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
0x2695c000 - 0x269a5fff BaseBoard armv7  <f5a41021f25d3946b1a47b8dd022d348> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
0x269a6000 - 0x269affff AssertionServices armv7  <bd7afd9e325f3bb29090124776f33477> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
0x269b0000 - 0x269d1fff BackBoardServices armv7  <114aba1da46234029e6a91ad4077dbc7> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
0x269d2000 - 0x269d5fff MobileSystemServices armv7  <fe657fcb14f03b16ab36909ceb509565> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices
0x269d6000 - 0x26a07fff FrontBoardServices armv7  <7e2ad3543ac93f818b150e65e045277c> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
0x26a08000 - 0x26a11fff UserNotificationServices armv7  <ae8adc1f9b483fd3875381a37f566087> /System/Library/PrivateFrameworks/UserNotificationServices.framework/UserNotificationServices
0x26a12000 - 0x26a38fff SpringBoardServices armv7  <5585174d4d5b39c98a9cf54e7a830436> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
0x26a39000 - 0x26a47fff MobileKeyBag armv7  <00b399840e50353398821cc5af26a2bd> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
0x26a48000 - 0x26a4dfff IOSurface armv7  <34773ddcada03183909fde3ab6a19783> /System/Library/PrivateFrameworks/IOSurface.framework/IOSurface
0x26a4e000 - 0x26a59fff liblockdown.dylib armv7  <d97e5e5167f23238af4aff095ab3d085> /usr/lib/liblockdown.dylib
0x26a5a000 - 0x26a6afff CrashReporterSupport armv7  <2ecb0502b67c389c8bd4cd75c1e1f937> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
0x26a6b000 - 0x26a6dfff IOSurfaceAccelerator armv7  <109f4ee23c333a5f885d7166c32d27b7> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator
0x26a6e000 - 0x26aa6fff AppleJPEG armv7  <0f5c750a41d134dfa233e17a6cbeace4> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
0x26aa7000 - 0x26d73fff ImageIO armv7  <4bf9967143d33b1c90544fe4684bed48> /System/Library/Frameworks/ImageIO.framework/ImageIO
0x26d74000 - 0x26d78fff TCC armv7  <b4f63a90372532bf8ebc443df5483a49> /System/Library/PrivateFrameworks/TCC.framework/TCC
0x26d79000 - 0x26d7dfff AggregateDictionary armv7  <7c6906d71b6c3949a5e8cf0a75fde172> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
0x26d7e000 - 0x26d89fff PowerLog armv7  <fa32969fc70e314c92d297c96ecb4e09> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog
0x26d8a000 - 0x26de1fff libTelephonyUtilDynamic.dylib armv7  <9dbac3e1edbf35579f6b8220216f94de> /usr/lib/libTelephonyUtilDynamic.dylib
0x26de2000 - 0x26df3fff CommonUtilities armv7  <6351cab57fb33b9c87a3daa9d6c5eab4> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
0x26df4000 - 0x26e06fff libcompression.dylib armv7  <f47b77be074a367082e6621df7874adf> /usr/lib/libcompression.dylib
0x26e07000 - 0x2703ffff CoreData armv7  <0f27265526e533e8aa80f9e90776e21a> /System/Library/Frameworks/CoreData.framework/CoreData
0x27040000 - 0x27043fff libCoreVMClient.dylib armv7  <23c3a0129048373489533f2fe5b31189> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
0x27044000 - 0x27048fff IOAccelerator armv7  <975f62aa39193f958acb2aea8c6548f9> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator
0x27049000 - 0x27049fff libCVMSPluginSupport.dylib armv7  <cfe35ea6e2be3004abac3efec993e779> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
0x2704a000 - 0x2704cfff libCoreFSCache.dylib armv7  <4d07f96a28e230e19610305f09543133> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
0x2704d000 - 0x2708afff libGLImage.dylib armv7  <d5362a22b71532f5898190b373cf1ab0> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
0x2708b000 - 0x27093fff libGFXShared.dylib armv7  <736d5892cc2631cebf3dc95335fab3e1> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
0x27094000 - 0x2709afff IOMobileFramebuffer armv7  <dbf575ac7d3d37e9871dc842107b9aac> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
0x2709b000 - 0x2709bfff libmetal_timestamp.dylib armv7  <4e7130f618683fcaa14e984aa69c6b20> /System/Library/PrivateFrameworks/GPUCompiler.framework/libmetal_timestamp.dylib
0x2709c000 - 0x270dbfff Metal armv7  <82b85ef46f073ac3b982613930b2d18e> /System/Library/Frameworks/Metal.framework/Metal
0x270dc000 - 0x270e4fff OpenGLES armv7  <be591fdbf1233c8b87989a23cb64ec48> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
0x270e5000 - 0x270fefff CoreVideo armv7  <e620a63658e93c6ba7f09ba1259a5cf3> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
0x270ff000 - 0x27101fff OAuth armv7  <1cde329fcda83099aa91a17bccccdeda> /System/Library/PrivateFrameworks/OAuth.framework/OAuth
0x27102000 - 0x27132fff Accounts armv7  <799890be36ae356d93f6b471858ec256> /System/Library/Frameworks/Accounts.framework/Accounts
0x27133000 - 0x27220fff libiconv.2.dylib armv7  <128e8025b7ac3ce39bac331c8ff7ba71> /usr/lib/libiconv.2.dylib
0x27221000 - 0x272d2fff CoreAudio armv7  <af6308271e993d369371f65a29640e70> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
0x272d3000 - 0x272d6fff UserFS armv7  <c979929ce2fa35e6a5435be27e3e5b81> /System/Library/PrivateFrameworks/UserFS.framework/UserFS
0x272d7000 - 0x2739bfff CoreMedia armv7  <f7c9e1b7b1c63ffda4eb66555c6740a3> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
0x2739c000 - 0x273a3fff libcupolicy.dylib armv7  <85bb2546c6c93a7b9d5bbd9977f98de0> /usr/lib/libcupolicy.dylib
0x273a4000 - 0x27404fff CoreTelephony armv7  <de4d3359028f35e98e26268c9abaf450> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
0x27405000 - 0x274dcfff libFontParser.dylib armv7  <35cfd6b7528336e6acd7754211ddcf85> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
0x274dd000 - 0x2754cfff ************ armv7  <a9e9851141443574a2ca44ae6010fd49> /System/Library/Frameworks/************.framework/************
0x2754d000 - 0x2754dfff FontServices armv7  <f77c979321a037cfad019d6e1de1bd54> /System/Library/PrivateFrameworks/FontServices.framework/FontServices
0x2754e000 - 0x2763dfff CoreText armv7  <13ac9bbc2a113b0e9dd339812e6328c3> /System/Library/Frameworks/CoreText.framework/CoreText
0x2763e000 - 0x2764dfff ProtocolBuffer armv7  <199beac04173385991563c8c13d3a4ad> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
0x2764e000 - 0x27676fff PersistentConnection armv7  <d52dd1933af1340da6dae1bd43066de6> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
0x27677000 - 0x2767cfff DataMigration armv7  <07a0a322a9833f0aab31ff2653247240> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
0x2767d000 - 0x27957fff AudioToolbox armv7  <8161927fc4823bd1ae39b5eb9e184cf7> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
0x27958000 - 0x27ad7fff QuartzCore armv7  <d6b7ab682351399aa4f34dc85c7c7794> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
0x27ad8000 - 0x27ae1fff Netrb armv7  <e2440dc757f239729bb819c9bec6ea64> /System/Library/PrivateFrameworks/Netrb.framework/Netrb
0x27ae2000 - 0x27aeffff libcmph.dylib armv7  <7543b1e5874f33948bb0734b1698cd68> /usr/lib/libcmph.dylib
0x27af0000 - 0x27b0afff libmis.dylib armv7  <13d614be41fb3bf99d2515b827694bbf> /usr/lib/libmis.dylib
0x27b0b000 - 0x27b79fff LanguageModeling armv7  <483f5999a1e731879df6790cac138c2f> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
0x27b7a000 - 0x27c3cfff ManagedConfiguration armv7  <5d81f3a3602b3f28acca442555b895a1> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
0x27c3d000 - 0x27c51fff libmarisa.dylib armv7  <1c5889466c2139c09961fc9045810614> /usr/lib/libmarisa.dylib
0x27c52000 - 0x27cf1fff ProofReader armv7  <1ef3b8bfe1a533a7982e4bdea126802b> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
0x27cf2000 - 0x27cfafff MediaAccessibility armv7  <8ea0134cb0c23f9abd52f69b577150fa> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
0x27cfb000 - 0x27d08fff MobileAsset armv7  <e2b3acc3c81d358d87f413f4da1a7bf7> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
0x27d09000 - 0x27d64fff ColorSync armv7  <457e36abc1ba3d70ab862db452ec800f> /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync
0x27d65000 - 0x27dadfff MetalPerformanceShaders armv7  <23327d30814b397c8f32eccc815406e7> /System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders
0x27dae000 - 0x281d2fff FaceCore armv7  <603efbea1446326cb1d8c03bd7c39a2d> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
0x281d3000 - 0x28241fff Quagga armv7  <85835a1819143f49bf328b0d9ce61e89> /System/Library/PrivateFrameworks/Quagga.framework/Quagga
0x28242000 - 0x283cefff CoreImage armv7  <502ea22c23df33faaeab97cbf9ea4c85> /System/Library/Frameworks/CoreImage.framework/CoreImage
0x283cf000 - 0x283fdfff TextInput armv7  <f668241c18833f0dbd89519067ce92c6> /System/Library/PrivateFrameworks/TextInput.framework/TextInput
0x283fe000 - 0x2840afff libAccessibility.dylib armv7  <eb5ae5552b6f37648a4bdd39083bc793> /usr/lib/libAccessibility.dylib
0x28413000 - 0x28818fff JavaScriptCore armv7  <20c6971b6a46315d913a493da07ea261> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
0x28819000 - 0x289d8fff StoreServices armv7  <10bb502fb51d35109e2029cc79973b93> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
0x289d9000 - 0x295e6fff WebCore armv7  <f1d7907456723619a5c5de04042ec36d> /System/Library/PrivateFrameworks/WebCore.framework/WebCore
0x295e7000 - 0x29608fff libxslt.1.dylib armv7  <ee5546bfb1fc3ddc8e5891c1a220f165> /usr/lib/libxslt.1.dylib
0x29609000 - 0x296d4fff WebKitLegacy armv7  <db7971bb9c473de9a535d84f22f9f13c> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
0x296d5000 - 0x29779fff CoreUI armv7  <79bedeace73a3a6e935807a76920464d> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
0x2977a000 - 0x29799fff DictionaryServices armv7  <71688fefa5be35fdab6d2b7b23c4f58a> /System/Library/PrivateFrameworks/DictionaryServices.framework/DictionaryServices
0x2979a000 - 0x2979afff HangTracer armv7  <f7e92074522c39c8b3d5a90bf6564143> /System/Library/PrivateFrameworks/HangTracer.framework/HangTracer
0x2979b000 - 0x297e7fff PhysicsKit armv7  <1dfbf229fc5434e38bc6341b588ed6d7> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
0x297e8000 - 0x298affff UIFoundation armv7  <ca544ebc2229391cbad36d80b49cd201> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
0x298b0000 - 0x2a443fff UIKit armv7  <50fa76ddd7013e258e2be559d941ab3a> /System/Library/Frameworks/UIKit.framework/UIKit
0x2a444000 - 0x2a463fff CoreBluetooth armv7  <0c37d7969fa43440b593c35efaaf3f36> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
0x2a464000 - 0x2a486fff DataAccessExpress armv7  <7a1cb11c75eb334c84f10909f89f49ca> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
0x2a487000 - 0x2a49efff NetworkStatistics armv7  <249fe57d8ca73e568a2193c8fd461afe> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics
0x2a49f000 - 0x2a50bfff AddressBook armv7  <b13e35459d9332fd8bc5f438fc35793e> /System/Library/Frameworks/AddressBook.framework/AddressBook
0x2a50c000 - 0x2a60dfff CoreMotion armv7  <589e2d505f8e3985bde8b64f986314b4> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
0x2a60e000 - 0x2a61cfff CacheDelete armv7  <16b9b9c652153075b9418e5cd0b49b49> /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete
0x2a61d000 - 0x2a627fff CoreAUC armv7  <8b86bc968abf3b88ace219d28f2d59d3> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC
0x2a628000 - 0x2a9a7fff MediaToolbox armv7  <1776266febde35258cd9c9f5aa60e618> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
0x2a9a8000 - 0x2ab0afff ********* armv7  <0b7722452e563c058c1b1e84569bd46d> /System/Library/PrivateFrameworks/*********.framework/*********
0x2ab0b000 - 0x2ab17fff IntlPreferences armv7  <5c126a4ecef431cca417728436529298> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences
0x2ab18000 - 0x2ab1afff CoreDuetDebugLogging armv7  <9fc3f61bd8f83ab2ae4b3998d391ceb1> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging
0x2ab1b000 - 0x2ab2dfff CoreDuetDaemonProtocol armv7  <e87c13ebefa2329c990df4b60fae6a1a> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol
0x2ab2e000 - 0x2abcefff CoreDuet armv7  <11f8b68d06c53da187a6f76a9c51d456> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet
0x2abcf000 - 0x2abd0fff BTLEAudioController armv7  <a85a07a583c730179e8385f3696d4e84> /System/Library/PrivateFrameworks/BTLEAudioController.framework/BTLEAudioController
0x2abd1000 - 0x2ac44fff libAVFAudio.dylib armv7  <08e6248efe223ff9adabd19265183dae> /System/Library/Frameworks/AVFoundation.framework/libAVFAudio.dylib
0x2ac45000 - 0x2adb2fff AVFoundation armv7  <8a87d62556163055a8d897c4a91eb5e1> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
0x2adb3000 - 0x2addafff libtidy.A.dylib armv7  <b39b6a0293b93da88180d2acb7cf66b6> /usr/lib/libtidy.A.dylib
0x2addb000 - 0x2ae45fff IMFoundation armv7  <6614f3555ce53a929cf2ee2c3b4c0862> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
0x2ae46000 - 0x2b28cfff GeoServices armv7  <481af33659c9364b98519007e0c6a5f2> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
0x2b28d000 - 0x2b28efff DiagnosticLogCollection armv7  <f039db48070938e79f7eb84518fd502b> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/DiagnosticLogCollection
0x2b28f000 - 0x2b290fff Marco armv7  <55a451f5e7623a1fbb8816f1dae353b4> /System/Library/PrivateFrameworks/Marco.framework/Marco
0x2b291000 - 0x2b2f8fff CoreLocation armv7  <48f170bd93da3344a4ce643a6d8e3374> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
0x2b2f9000 - 0x2b2fdfff ConstantClasses armv7  <bb65bacf0de43dcbaf4f6148dfa2dacf> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
0x2b2fe000 - 0x2b307fff libChineseTokenizer.dylib armv7  <68403f48f85c316a84f7ca446ca54bbe> /usr/lib/libChineseTokenizer.dylib
0x2b308000 - 0x2b552fff libmecabra.dylib armv7  <7a332975fb743d2abdc0dc50fe5f4aea> /usr/lib/libmecabra.dylib
0x2b553000 - 0x2b585fff IDSFoundation armv7  <6e4fd711e68939e9a1355bc60440f8e3> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
0x2b586000 - 0x2b5f9fff IDS armv7  <5e81837c98523d119df6cd41f8806feb> /System/Library/PrivateFrameworks/IDS.framework/IDS
0x2b5fa000 - 0x2b612fff MediaServices armv7  <944e5504a3ef3b5ea9b7af2664c6528a> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
0x2b613000 - 0x2b634fff AuthKit armv7  <74845dc1618038cc9d6013a3e701a37a> /System/Library/PrivateFrameworks/AuthKit.framework/AuthKit
0x2b635000 - 0x2b638fff libheimdal-asn1.dylib armv7  <04fb61f676673fd5b92fcaf45c6697dc> /usr/lib/libheimdal-asn1.dylib
0x2b639000 - 0x2b6a5fff MediaRemote armv7  <1e81242bd1263de1a69d3e44cab0527f> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
0x2b6a6000 - 0x2b7a9fff MobileSpotlightIndex armv7  <e35b93ae00353a239b002c1f1547f2d3> /System/Library/PrivateFrameworks/MobileSpotlightIndex.framework/MobileSpotlightIndex
0x2b7aa000 - 0x2b7c2fff PlugInKit armv7  <c68c4aa732a53e50ba19fb85bdf7aac5> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
0x2b7c3000 - 0x2b7e4fff ProtectedCloudStorage armv7  <869da1089df23027a0678405a3e1cb6a> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage
0x2b7e5000 - 0x2b7fafff libresolv.9.dylib armv7  <3d9922bfb1ca3b489ecc6708bd726e78> /usr/lib/libresolv.9.dylib
0x2b7fb000 - 0x2b80efff ApplePushService armv7  <6d62dc30f2c331b2af9fdf98bebe0694> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
0x2b80f000 - 0x2b832fff ContactsFoundation armv7  <a1a269557de73682b4a536482593393c> /System/Library/PrivateFrameworks/ContactsFoundation.framework/ContactsFoundation
0x2b833000 - 0x2b837fff ParsecSubscriptionServiceSupport armv7  <39f471d880a53fe0b02ba621025c25fc> /System/Library/PrivateFrameworks/ParsecSubscriptionServiceSupport.framework/ParsecSubscriptionServiceSupport
0x2b838000 - 0x2b8b3fff Contacts armv7  <6300cd2e3d3332dea55a5e58f8930e88> /System/Library/Frameworks/Contacts.framework/Contacts
0x2b8b4000 - 0x2b8ebfff CoreSpotlight armv7  <032e7f5517ea3791b504f913764f1ff7> /System/Library/Frameworks/CoreSpotlight.framework/CoreSpotlight
0x2b8ec000 - 0x2b909fff vCard armv7  <d2b3bda5dd903617b7fb77a210c02199> /System/Library/PrivateFrameworks/vCard.framework/vCard
0x2b96f000 - 0x2b971fff CommonAuth armv7  <ef9e8cd9e62d36e0867f597cc719ff2b> /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth
0x2b972000 - 0x2b9c6fff Heimdal armv7  <5e588ecbd5523b61b4d671a0a939a035> /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal
0x2b9c7000 - 0x2b9e7fff GSS armv7  <2059afd7dc273df2a6162a6cf671c576> /System/Library/Frameworks/GSS.framework/GSS
0x2ba37000 - 0x2ba3ffff FMCoreLite armv7  <f9ecb275fdc933f28c9f7bbf8d004338> /System/Library/PrivateFrameworks/FMCoreLite.framework/FMCoreLite
0x2ba40000 - 0x2ba43fff MessageSupport armv7  <3962dc0fac3c303da9eec419fe24182b> /System/Library/PrivateFrameworks/MessageSupport.framework/MessageSupport
0x2ba44000 - 0x2ba84fff MIME armv7  <11077df5ad17333889870f3436d43fa4> /System/Library/PrivateFrameworks/MIME.framework/MIME
0x2ba85000 - 0x2ba8afff AOSNotification armv7  <7ea60141efd53ee1a3d98817ba365c84> /System/Library/PrivateFrameworks/AOSNotification.framework/AOSNotification
0x2ba8b000 - 0x2bae5fff AccountsDaemon armv7  <d5501ba843e832f3a5f5aaa93bed0623> /System/Library/PrivateFrameworks/AccountsDaemon.framework/AccountsDaemon
0x2bae6000 - 0x2bb03fff AppleIDSSOAuthentication armv7  <999052b6474636bba4a3232b574c2928> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication
0x2bb04000 - 0x2bb12fff MailServices armv7  <b2676bfba3343d5a95723047fd41bbb3> /System/Library/PrivateFrameworks/MailServices.framework/MailServices
0x2bb13000 - 0x2bb6bfff AppleAccount armv7  <530edd8a3a8c39ec846fddf58b511124> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
0x2bb6c000 - 0x2bb70fff CommunicationsFilter armv7  <7858c52771cf3b1da6eec4caabbee472> /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter
0x2bb71000 - 0x2bb93fff ChunkingLibrary armv7  <b5e2778cf9ec3dc9971b26453a7b7b56> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary
0x2bb94000 - 0x2bb9cfff CaptiveNetwork armv7  <9fb0a8ac86513f06a36c01d46c69c758> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
0x2bb9d000 - 0x2bbbcfff EAP8021X armv7  <aae2733b2cdc3afd9aaac88069c58f88> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
0x2bbbd000 - 0x2bbc1fff AssetCacheServices armv7  <29dac9bc4b953d9d83cffc0628a2d8a8> /System/Library/PrivateFrameworks/AssetCacheServices.framework/AssetCacheServices
0x2bbc2000 - 0x2bc29fff MMCS armv7  <dee21c69b1b537cb93c210280304d382> /System/Library/PrivateFrameworks/MMCS.framework/MMCS
0x2bc2a000 - 0x2bc37fff MobileWiFi armv7  <246eeabefae430c3a2e473d7eacaded5> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
0x2bc80000 - 0x2bc89fff MobileBluetooth armv7  <f04bf0fdc9a53f67a08d1964e27a8549> /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth
0x2bcc1000 - 0x2bce8fff Bom armv7  <62b46c4dc6c33049a9a218eef8243c42> /System/Library/PrivateFrameworks/Bom.framework/Bom
0x2bce9000 - 0x2bceefff CertUI armv7  <5d442be17f733400b518b9689544e127> /System/Library/PrivateFrameworks/CertUI.framework/CertUI
0x2bcef000 - 0x2bd23fff FTServices armv7  <acaed5ce3ef73da1b8ed5d3a6621142c> /System/Library/PrivateFrameworks/FTServices.framework/FTServices
0x2bd24000 - 0x2bd79fff CoreDAV armv7  <b0b95d69b7f03837b72052095b760755> /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV
0x2bd7a000 - 0x2bd82fff BaseBoardUI armv7  <1769ecfa77b330199336708203542a56> /System/Library/PrivateFrameworks/BaseBoardUI.framework/BaseBoardUI
0x2bd83000 - 0x2bd8ffff UserManagement armv7  <dc7be1666a513c358707e94c71be9884> /System/Library/PrivateFrameworks/UserManagement.framework/UserManagement
0x2bd90000 - 0x2be3cfff CorePDF armv7  <870895950e1e3fd79eec993641e2289c> /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF
0x2be3d000 - 0x2be69fff iCalendar armv7  <a6ebd7442faf3407a053aca86ef9372a> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar
0x2be73000 - 0x2beb6fff CalendarFoundation armv7  <57612404002c35d2ba22cd5d87d3104f> /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation
0x2beb7000 - 0x2bebcfff IncomingCallFilter armv7  <f1924dbce5d53af68585981170f4e875> /System/Library/PrivateFrameworks/IncomingCallFilter.framework/IncomingCallFilter
0x2bf8a000 - 0x2bff7fff CalendarDatabase armv7  <29b65dc1f98b31c5b11b2bff87f6f660> /System/Library/PrivateFrameworks/CalendarDatabase.framework/CalendarDatabase
0x2bff8000 - 0x2c029fff CalendarDaemon armv7  <9e6df154e806336da5c8a36fa6b2ced7> /System/Library/PrivateFrameworks/CalendarDaemon.framework/CalendarDaemon
0x2c02a000 - 0x2c0b3fff EventKit armv7  <5101190cb50f36da81aa7819a1a8a52a> /System/Library/Frameworks/EventKit.framework/EventKit
0x2c0b4000 - 0x2c30efff WebKit armv7  <3e16ad71cf653cbf936b67055e983259> /System/Library/Frameworks/WebKit.framework/WebKit
0x2c30f000 - 0x2c342fff WebBookmarks armv7  <fffef568ab01339e8e0322ba2f85b933> /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks
0x2c343000 - 0x2c42bfff ContactsUI armv7  <ecdb71e3af953e9fbf7564c36e3224eb> /System/Library/Frameworks/ContactsUI.framework/ContactsUI
0x2c42c000 - 0x2c7effff ModelIO armv7  <82ef6d61311433c9a0d62817dff95295> /System/Library/Frameworks/ModelIO.framework/ModelIO
0x2c7f0000 - 0x2c7f5fff DAAPKit armv7  <528855afb53b3d309c860c26c7230b08> /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit
0x2c868000 - 0x2c8c4fff TelephonyUtilities armv7  <5b34df3277573d6c822e4e852513cbde> /System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtilities
0x2c8c5000 - 0x2c8f2fff GLKit armv7  <68b6b998f2a53e13bc56b39e03ec306c> /System/Library/Frameworks/GLKit.framework/GLKit
0x2c8f3000 - 0x2cb04fff MusicLibrary armv7  <f40d3723f5fd3bffbff52330148b914b> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
0x2cb3f000 - 0x2cc09fff AddressBookUI armv7  <b59f8a4ff02532358359ca3ebd723a86> /System/Library/Frameworks/AddressBookUI.framework/AddressBookUI
0x2cc0a000 - 0x2ccb0fff CloudKit armv7  <496dd435b4bb321c8356f9bba83757f6> /System/Library/Frameworks/CloudKit.framework/CloudKit
0x2ccb1000 - 0x2ccf3fff iTunesStore armv7  <5bf58b47f43935d6afa833c632664013> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore
0x2ce2e000 - 0x2ceb7fff HomeSharing armv7  <55763cbf79ed37a99ad358454b15f0de> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
0x2d00e000 - 0x2d24afff MediaPlayer armv7  <3d1bb7460f2f3d7e84e3b75f9573d055> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
0x2d329000 - 0x2d32ffff CoreTime armv7  <0e2eb204485639e1932a754498417769> /System/Library/PrivateFrameworks/CoreTime.framework/CoreTime
0x2d668000 - 0x2d69afff PrototypeTools armv7  <1ab0c9033b6230d2816fc9dcc7aa2e66> /System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools
0x2d721000 - 0x2d795fff BulletinBoard armv7  <e2dca377f64b383f9bdc3c180094fa55> /System/Library/PrivateFrameworks/BulletinBoard.framework/BulletinBoard
0x2d796000 - 0x2d796fff MobileObliteration armv7  <d85b903c6488386cacafe62ca312e97e> /System/Library/PrivateFrameworks/MobileObliteration.framework/MobileObliteration
0x2d7ad000 - 0x2d802fff SpringBoardFoundation armv7  <fc1fc91dfcf737619d8645f009d27c67> /System/Library/PrivateFrameworks/SpringBoardFoundation.framework/SpringBoardFoundation
0x2d9b0000 - 0x2d9f0fff TelephonyUI armv7  <2876cb9c1ff93f489a1bdf6243c9e3dc> /System/Library/PrivateFrameworks/TelephonyUI.framework/TelephonyUI
0x2d9f1000 - 0x2da0ffff ToneLibrary armv7  <2d68f0cd61a33e2b80be91bbf22efeef> /System/Library/PrivateFrameworks/ToneLibrary.framework/ToneLibrary
0x2da59000 - 0x2da73fff DataDetectorsCore armv7  <0180d1c438da31849583c23ffff3d2c1> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore
0x2da74000 - 0x2da7efff NotificationsUI armv7  <1d7603ec96753416a899ebe65955b8f0> /System/Library/PrivateFrameworks/NotificationsUI.framework/NotificationsUI
0x2da7f000 - 0x2da83fff ProgressUI armv7  <c2324b43a91731afab78b72550e5f150> /System/Library/PrivateFrameworks/ProgressUI.framework/ProgressUI
0x2dd15000 - 0x2dd47fff SpringBoardUIServices armv7  <7932d86488c43154b8bb0dd0fc9d9a54> /System/Library/PrivateFrameworks/SpringBoardUIServices.framework/SpringBoardUIServices
0x2df93000 - 0x2dfacfff SpringBoardUI armv7  <52155bcd984a38fc870cc4fe376b28a1> /System/Library/PrivateFrameworks/SpringBoardUI.framework/SpringBoardUI
0x2dfad000 - 0x2e58dfff VectorKit armv7  <7143664b4d00345b864dd59d706834eb> /System/Library/PrivateFrameworks/VectorKit.framework/VectorKit
0x2e58e000 - 0x2e70dfff MapKit armv7  <0d7a2185946536e3b0f43d23fa0f8447> /System/Library/Frameworks/MapKit.framework/MapKit
0x2ec54000 - 0x2ec54fff AdSupport armv7  <3bce83a432ef3190b9ec5637d27a2a37> /System/Library/Frameworks/AdSupport.framework/AdSupport
0x2ec55000 - 0x2ec6efff StoreKit armv7  <1b324f6e806e343f9ed783971aa8b666> /System/Library/Frameworks/StoreKit.framework/StoreKit
0x2ed00000 - 0x2ed16fff SharedUtils armv7  <91869c9e053e38f3bc2ed576775adde5> /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/SharedUtils
0x2efb9000 - 0x2efc3fff LocalAuthentication armv7  <352ae6978c963305b600706d2a25b73a> /System/Library/Frameworks/LocalAuthentication.framework/LocalAuthentication
0x2efc4000 - 0x2efe7fff CalendarUIKit armv7  <7cbe31d6bfad33f7b297905048157116> /System/Library/PrivateFrameworks/CalendarUIKit.framework/CalendarUIKit
0x2f032000 - 0x2f198fff EventKitUI armv7  <8f95f46b75ba3c5bafbac90ab7beba24> /System/Library/Frameworks/EventKitUI.framework/EventKitUI
0x2f225000 - 0x2f248fff Pegasus armv7  <39b61530458a3c6a8a85cc8277435e51> /System/Library/PrivateFrameworks/Pegasus.framework/Pegasus
0x2f2e2000 - 0x2f327fff AVKit armv7  <a4cf065f8e9f30b8a7c813e3bbc121e6> /System/Library/Frameworks/AVKit.framework/AVKit
0x2f328000 - 0x2f32dfff AITTarget armv7  <4c7bf07d09f939c18a79b10f5e53e2f1> /System/Library/PrivateFrameworks/AITTarget.framework/AITTarget
0x2f3cf000 - 0x2f58bfff SafariShared armv7  <08f5f4270867322d8ba96bb52bf9e3e7> /System/Library/PrivateFrameworks/SafariShared.framework/SafariShared
0x2fcb1000 - 0x2fce7fff WebUI armv7  <7da1aca3530f3c11b8ec744d10b27b45> /System/Library/PrivateFrameworks/WebUI.framework/WebUI
0x300e5000 - 0x30158fff SafariServices armv7  <c8456ddbbe913840a8ef3e894f8ccfd6> /System/Library/Frameworks/SafariServices.framework/SafariServices
0x305ba000 - 0x305c0fff iAdServices armv7  <764470acb3223fa8b2bd1bf593700a56> /System/Library/PrivateFrameworks/iAdServices.framework/iAdServices
0x305c1000 - 0x306f6fff libGLProgrammability.dylib armv7  <e3d143c7bfc23475b0ee1f216b1a7466> /System/Library/Frameworks/OpenGLES.framework/libGLProgrammability.dylib
0x306f7000 - 0x3072ffff iAd armv7  <b1907ff3a2973296a958884d9609cd4d> /System/Library/Frameworks/iAd.framework/iAd
0x307bb000 - 0x307d1fff FlightUtilities armv7  <3fcc2641580932d596df9119aee61018> /System/Library/PrivateFrameworks/FlightUtilities.framework/FlightUtilities
0x308ac000 - 0x308ddfff OpenAL armv7  <593e5eca76b23e89b702743b5195a2bd> /System/Library/Frameworks/OpenAL.framework/OpenAL
0x31408000 - 0x3142ffff DataDetectorsUI armv7  <14d4a61553d93fd090657923097598d5> /System/Library/PrivateFrameworks/DataDetectorsUI.framework/DataDetectorsUI
0x31b9f000 - 0x31ba5fff libGPUSupportMercury.dylib armv7  <d77a7d7b5fcc3aa4a10d5400f8612287> /System/Library/PrivateFrameworks/GPUSupport.framework/libGPUSupportMercury.dylib
0x32380000 - 0x323d4fff CoreBrightness armv7  <f11e8920e64032d2961616668b17fa80> /System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness
0x330a1000 - 0x330b4fff GameController armv7  <50a59a4511633266b07c5fea5152e61b> /System/Library/Frameworks/GameController.framework/GameController
0x3490a000 - 0x34a19fff IMGSGX543GLDriver armv7  <cb65b96ce05b3694a932b686eadd8ddc> /System/Library/Extensions/IMGSGX543GLDriver.bundle/IMGSGX543GLDriver
0x34a25000 - 0x34a38fff libCGInterfaces.dylib armv7  <78f4b125ff033afea9a55a845f79498c> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Libraries/libCGInterfaces.dylib
0x34a39000 - 0x34bd6fff AudioCodecs armv7  <34ad68e38905340eb2d081c2d2b4491d> /System/Library/Frameworks/AudioToolbox.framework/AudioCodecs
0x34e48000 - 0x34f20fff GLEngine armv7  <e9a36eba15a93bae8aa2a4d227d81e1d> /System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine
0x35c41000 - 0x35c60fff CoreServicesInternal armv7  <db484f452bf437a993bf39423f6efd67> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal
0x35ec3000 - 0x35ecefff libGSFontCache.dylib armv7  <0bf6fc62e8d83532aefcf239b6d0ef57> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib


Error Formulating Crash Report:
Failed while requesting activity/breadcrumb diagnostics

Thanks for the crash log. I can’t see any indication of whether your app is in the foreground or background when this crash occurs. It also doesn’t show any evidence that anything except Unity code is involved in this problem.

One interesting thing is this:

Date/Time:          2016-06-03 13:52:54.54 -0700 
Launch Time:        2016-06-03 13:52:25.25 -0700

The app crashed only 30 seconds after launch. How long does your app take to launch normally? Before you answer, consider this:

Hardware Model:      iPhone4,1

iPhone 4,1 is iPhone 4S, that is, really slow. Perhaps this crash only crops up on really slow devices. And it’s triggered by a user getting bored with the slow launch time and hitting the Home button.

*shrug*

At a minimum I think you should play around with your app on slow hardware.

Share and Enjoy

Quinn “The Eskimo!”
Apple Developer Relations, Developer Technical Support, Core OS/Hardware

let myEmail = "eskimo" + "1" + "@apple.com"

WWDC runs Mon, 13 Jun through to Fri, 17 Jun. During that time all of DTS will be at the conference, helping folks out face-to-face. http://developer.apple.com/wwdc/

Lots of crash reports for AssetCatalogFile::Read(), maybe in background?
 
 
Q