Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EXC_CORPSE_NOTIFY iOS crash when using native modules #19107

Closed
3 tasks done
getaaron opened this issue May 2, 2018 · 28 comments
Closed
3 tasks done

EXC_CORPSE_NOTIFY iOS crash when using native modules #19107

getaaron opened this issue May 2, 2018 · 28 comments
Labels
Bug Platform: iOS iOS applications. Resolution: Locked This issue was locked by the bot.

Comments

@getaaron
Copy link
Contributor

getaaron commented May 2, 2018

The app intermittently crashes when resolving or rejecting a promise in a native module. Possibly related to #5011.

This reproduces with several native modules so I don't think it's related to a specific module.

Environment

Environment:
  OS: macOS High Sierra 10.13.3
  Node: 9.5.0
  Yarn: 1.3.2
  npm: 5.6.0
  Watchman: 4.9.0
  Xcode: Xcode 9.2 Build version 9C40b
  Android Studio: 3.0 AI-171.4443003

Packages: (wanted => installed)
  react: ^16.3.0-alpha.1 => 16.3.0-alpha.3
  react-native: 0.55.0 => 0.55.0

Steps to Reproduce

  1. Create a simple Native Module
  2. Use it

Expected Behavior

I expect the data to flow back and forth as documented.

Actual Behavior

The app intermittently crashes with what looks like a memory issue.

From my observation I think it happens when resolving or rejecting a promise from Objective-C.

Here's a screenshot from the crash organizer. Note that the crash occurred on thread 10, not the main thread:

image

So it looks like it's somewhere in this code:

static MethodCallResult invokeInner(RCTBridge *bridge, RCTModuleData *moduleData, unsigned int methodId, const folly::dynamic &params) {
if (!bridge || !bridge.valid || !moduleData) {
return folly::none;
}
id<RCTBridgeMethod> method = moduleData.methods[methodId];
if (RCT_DEBUG && !method) {
RCTLogError(@"Unknown methodID: %ud for module: %@",
methodId, moduleData.name);
}
NSArray *objcParams = convertFollyDynamicToId(params);
@try {
id result = [method invokeWithBridge:bridge module:moduleData.instance arguments:objcParams];
return convertIdToFollyDynamic(result);
}
@catch (NSException *exception) {
// Pass on JS exceptions
if ([exception.name hasPrefix:RCTFatalExceptionName]) {
@throw exception;
}
NSString *message = [NSString stringWithFormat:
@"Exception '%@' was thrown while invoking %s on target %@ with params %@\ncallstack: %@",
exception, method.JSMethodName, moduleData.name, objcParams, exception.callStackSymbols];
RCTFatal(RCTErrorWithMessage(message));
}
return folly::none;
}

I see that code can throw this exception:

Exception '%@' was thrown while invoking %s on target %@ with params %@\ncallstack: %@",
exception

But I don't see that error anywhere in the crash log so I'm not sure where to find it. I'm not sure if this was the actual exception, since the crash report says EXC_CORPSE_NOTIFY so it may be a red herring

@react-native-bot react-native-bot added the Platform: iOS iOS applications. label May 2, 2018
@getaaron
Copy link
Contributor Author

getaaron commented May 2, 2018

@getaaron getaaron closed this as completed May 2, 2018
@getaaron getaaron reopened this May 2, 2018
@getaaron
Copy link
Contributor Author

getaaron commented May 3, 2018

I was just able to reproduce what I think is the same issue in the simulator by pressing ⌘R a few times:

image

Interestingly, the stack trace is identical, but this says EXC_BAD_ACCESS vs. EXC_CORPSE_NOTIFY. I wonder if the difference is because the former is a debug build but the latter is a release build.

I tried to inspect some of the variables in lldb, but then Xcode crashed 🙄

@stale
Copy link

stale bot commented Aug 1, 2018

Hey there, it looks like there has been no activity on this issue recently. Has the issue been fixed, or does it still require the community's attention? This issue may be closed if no further activity occurs. You may also label this issue as "For Discussion" or "Good first issue" and I will leave it open. Thank you for your contributions.

@stale stale bot added the Stale There has been a lack of activity on this issue and it may be closed soon. label Aug 1, 2018
@getaaron
Copy link
Contributor Author

getaaron commented Aug 1, 2018

Issue still persists in 0.56

@stale stale bot removed the Stale There has been a lack of activity on this issue and it may be closed soon. label Aug 1, 2018
@JimBTek
Copy link

JimBTek commented Sep 21, 2018

seems like we are seeing this:

OS Version:          iPhone OS 11.2 (15C114)
Baseband Version:    6.30.04
Report Version:      104

Exception Type:  EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note:  EXC_CORPSE_NOTIFY
Triggered by Thread:  21

Application Specific Information:
abort() called

Filtered syslog:
None found
Thread 21 name:  Dispatch queue: com.facebook.react.ExceptionsManagerQueue
Thread 21 Crashed:
0   libsystem_kernel.dylib        	0x00000001824282e8 __pthread_kill + 8
1   libsystem_pthread.dylib       	0x000000018253d2f8 pthread_kill$VARIANT$mp + 396
2   libsystem_c.dylib             	0x0000000182396fbc abort + 140
3   libc++abi.dylib               	0x0000000181b33068 __cxa_bad_cast + 0
4   libc++abi.dylib               	0x0000000181b33210 default_unexpected_handler+ 8720 () + 0
5   libobjc.A.dylib               	0x0000000181b5c810 _objc_terminate+ 34832 () + 124
6   OURApp Beta                  	0x000000010124e6ec 0x1011f0000 + 386796
7   libc++abi.dylib               	0x0000000181b4b54c std::__terminate(void (*)+ 107852 ()) + 16
8   libc++abi.dylib               	0x0000000181b4aea8 __cxxabiv1::exception_cleanup_func+ 106152 (_Unwind_Reason_Code, _Unwind_Exception*) + 0
9   libobjc.A.dylib               	0x0000000181b5c65c _objc_exception_destructor+ 34396 (void*) + 0
10  OURApp Beta                  	0x00000001012d9560 0x1011f0000 + 955744
11  OURApp Beta                  	0x00000001012d90a8 0x1011f0000 + 954536
12  libdispatch.dylib             	0x0000000182292a54 _dispatch_call_block_and_release + 24
13  libdispatch.dylib             	0x0000000182292a14 _dispatch_client_callout + 16
14  libdispatch.dylib             	0x000000018229c96c _dispatch_queue_serial_drain$VARIANT$mp + 528
15  libdispatch.dylib             	0x000000018229d2fc _dispatch_queue_invoke$VARIANT$mp + 340
16  libdispatch.dylib             	0x000000018229dd20 _dispatch_root_queue_drain_deferred_wlh$VARIANT$mp + 404
17  libdispatch.dylib             	0x00000001822a603c _dispatch_workloop_worker_thread$VARIANT$mp + 644
18  libsystem_pthread.dylib       	0x000000018253af1c _pthread_wqthread + 932
19  libsystem_pthread.dylib       	0x000000018253ab6c start_wqthread + 4

@skrilladeville
Copy link

skrilladeville commented Sep 21, 2018 via email

@skrilladeville
Copy link

skrilladeville commented Sep 21, 2018 via email

@skrilladeville
Copy link

skrilladeville commented Sep 21, 2018 via email

@gerow-x
Copy link

gerow-x commented Sep 27, 2018

+1

@Mubashirkhan
Copy link

has some one fixed this issue ??????

@haiau
Copy link

haiau commented Nov 8, 2018

In my case, when Release I got a message like:
... Thread 1 name: Dispatch queue: com.facebook.react.ExceptionsManagerQueue Thread 1 Crashed: ...
This bug prevented me from submitting my app to AppStore
Then I test all cases, and read the code carefully, I found that there is the getter in an undefined object.
So maybe there are some bugs in JS code and it causes crashes.

@isaaclem
Copy link
Contributor

I'm still hitting this issue in 0.58.4, crashing in release mode but working fine in debug mode

 React Native Environment Info:
    System:
      OS: macOS High Sierra 10.13.6
      CPU: x64 Intel(R) Core(TM) i5-7360U CPU @ 2.30GHz
      Memory: 30.79 MB / 8.00 GB
      Shell: 5.3 - /bin/zsh
    Binaries:
      Node: 8.15.0 - /usr/local/bin/node
      Yarn: 1.13.0 - /usr/local/bin/yarn
      npm: 6.5.0 - /usr/local/bin/npm
      Watchman: 4.9.0 - /usr/local/bin/watchman
    SDKs:
      iOS SDK:
        Platforms: iOS 12.1, macOS 10.14, tvOS 12.1, watchOS 5.1
    IDEs:
      Android Studio: 3.2 AI-181.5540.7.32.5014246
      Xcode: 10.1/10B61 - /usr/bin/xcodebuild
    npmPackages:
      react: 16.6.3 => 16.6.3
      react-native: 0.58.4 => 0.58.4
    npmGlobalPackages:
      react-native-cli: 2.0.1
Thread 8 name:  Dispatch queue: com.facebook.react.ExceptionsManagerQueue
Thread 8 Crashed:
0   libsystem_kernel.dylib        	0x00000001a2bc7104 __pthread_kill + 8
1   libsystem_pthread.dylib       	0x00000001a2c47948 pthread_kill$VARIANT$armv81 + 296
2   libsystem_c.dylib             	0x00000001a2b1ed78 abort + 140
3   libc++abi.dylib               	0x00000001a21e8f78 __cxa_bad_cast + 0
4   libc++abi.dylib               	0x00000001a21e9120 default_unexpected_handler+ 8480 () + 0
5   libobjc.A.dylib               	0x00000001a2201e58 _objc_terminate+ 28248 () + 124
6   libc++abi.dylib               	0x00000001a21f50fc std::__terminate(void (*)+ 57596 ()) + 16
7   libc++abi.dylib               	0x00000001a21f5188 std::terminate+ 57736 () + 84
8   libdispatch.dylib             	0x00000001a2a6a498 _dispatch_client_callout + 36
9   libdispatch.dylib             	0x00000001a2a44fa0 _dispatch_lane_serial_drain$VARIANT$armv81 + 548
10  libdispatch.dylib             	0x00000001a2a45ae4 _dispatch_lane_invoke$VARIANT$armv81 + 412
11  libdispatch.dylib             	0x00000001a2a4df04 _dispatch_workloop_worker_thread + 584
12  libsystem_pthread.dylib       	0x00000001a2c4d0dc _pthread_wqthread + 312
13  libsystem_pthread.dylib       	0x00000001a2c4fcec start_wqthread + 4

@grabbou
Copy link
Contributor

grabbou commented Mar 19, 2019

Hello there 👋 this issue doesn't have a repro (which means, a react-native init-ed project with the minimal changes that leads to creating the same issue you are reporting).

Unfortunately, I have no way of helping you in a meaningful way – there is no easy way for me to recreate the situation and check that the issue reported is still there when changing the code. We need a exact code of a native module and the payload that is causing issue, otherwise it's hard.

Because of this, we are going to close this issue - but if a repro is shared, we are happy to reopen it 🤗

@grabbou grabbou closed this as completed Mar 19, 2019
@getaaron
Copy link
Contributor Author

My original report filed almost a year ago included steps to reproduce. Lots of people have commented that they reproduced it. Did you try it?

@kuzkokov
Copy link

Same here

@JimBTek
Copy link

JimBTek commented Mar 26, 2019

@getaaron we noticed crashes when we were heavily downloading data across multiple threads and eating up both cpu and storage I/O and iOS kills the app. The only way to find that the device was killing the app (vs. the app crashing) was to plug in the iPad and pull logs from the device directly vs. with xCode. We sorted this out when no crash reports were showing up in App Center, because the app was getting force quit, not crashing. We had to better handle our data downloads and sequence them, downloading ~200 MB of data on first login (offline first corporate app).

I'm kind of noob though and we have had a variety of problems so YMMV.

@solixmedia
Copy link

@getaaron Did you ever find a solution? My crash report looks similar to yours. App worked fine in build mode and in 3 different devices but crashed on appstore review.

@getaaron
Copy link
Contributor Author

@solixmedia We rewrote the app in Swift and got rid of React Native.

@solixmedia
Copy link

@getaaron Thanks for replying. Kind of discouraging to hear.

1 similar comment
@solixmedia
Copy link

@getaaron Thanks for replying. Kind of discouraging to hear.

@ThomasStubbe
Copy link

ThomasStubbe commented Aug 22, 2019

We're having the same issue in React Native 59.9
It only crashes on iOS.
It only crashes in production.
It doesn't always crash.
It crashes without doing anything (just starting the app and waiting on a static screen).
It crashes after 3-10 seconds
We don't download heavy amounts of data.
It has the exact same com.facebook.react.ExceptionsManagerQueue stacktrace.
In the complete logfile there is only one line of code coming from us and it's in com.apple.main-thread: right before UIKitCore and GraphicsServices, so it's very likely not coming from our code.

We do connect to quite a few native-modules:
From react-native:

  • Core
  • CxxBridge
  • RCTPushNotification
  • DevSupport
  • RCTText
  • RCTImage
  • RCTNetwork
  • RCTWebSocket
  • RCTSettings
  • RCTAnimation
  • RCTLinkingIOS
  • RCTAnimation
  • RCTActionSheet
  • RCTGeolocation
  • RCTImage
  • RCTVibration
  • yoga
  • DoubleConversion
  • glog
  • Folly

From third party:

  • RSKImageCropper
  • QBImagePickerController
  • iOSDFULibrary
  • react-native-ble-plx-swift
  • RCTSystemSetting
  • react-native-netinfo
  • react-native-ble-plx
  • react-native-blur
  • RNI18n
  • BVLinearGradient
  • react-native-sensitive-info
  • RNVectorIcons
  • rn-fetch-blob
  • RNImageCropPicker
  • RNCAsyncStorage
  • react-native-orientation
  • react-native-video/VideoCaching

Edit:

  • This has happened on all 4 iOS devices at our office consistently, whether the app was clean installed for the first time or already on there for a longer time
  • Once the crashing stops (on some devices after the 1st time, others still have it after 50 times), it seems like it's over for good and the app works fine (tried about 50 times now).
  • The only thing that changes in the last 2 months, is that we renewed our Distribution, Developer, Apple Push Notification and APNs Development iOS certificates. Afterwards edited the provisioning profiles of the app to use the new certificates and revoked the old ones. According to apple, this does not affect downloaded apps from the app store and installing a new app has no issues. (https://developer.apple.com/support/certificates/)

Never ever have I experienced something like this, nor do I have any clue what could be the cause.

OS Version:          iPhone OS 12.3.1 (16F203)
Baseband Version:    3.03.04
Report Version:      104

Exception Type:  EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note:  EXC_CORPSE_NOTIFY
Triggered by Thread:  2

Application Specific Information:
abort() called

Last Exception Backtrace:
0   CoreFoundation                 0x20f1e927c __exceptionPreprocess + 228
1   libobjc.A.dylib               0x20e3c39f8 objc_exception_throw + 55
2   React                         0x104e816c4 0x104e50000 + 202436
3   React                         0x104eae13c 0x104e50000 + 385340
4   CoreFoundation                 0x20f1f0900 __invoking___ + 143
5   CoreFoundation                 0x20f0d24d0 -[NSInvocation invoke] + 291
6   CoreFoundation                 0x20f0d3104 -[NSInvocation invokeWithTarget:] + 59
7   React                         0x104ed1b84 0x104e50000 + 531332
8   React                         0x104ed8670 0x104e50000 + 558704
9   React                         0x104ed83d0 0x104e50000 + 558032
10  libdispatch.dylib             0x20ec28a38 _dispatch_call_block_and_release + 23
11  libdispatch.dylib             0x20ec297d4 _dispatch_client_callout + 15
12  libdispatch.dylib             0x20ebd2320 _dispatch_lane_serial_drain$VARIANT$mp + 591
13  libdispatch.dylib             0x20ebd2e3c _dispatch_lane_invoke$VARIANT$mp + 427
14  libdispatch.dylib             0x20ebdb4a8 _dispatch_workloop_worker_thread + 595
15  libsystem_pthread.dylib       0x20ee09114 _pthread_wqthread + 303
16  libsystem_pthread.dylib       0x20ee0bcd4 start_wqthread + 3


Thread 0 name:  Dispatch queue: com.apple.main-thread
Thread 0:
0   libsystem_kernel.dylib         0x000000020ed7b0f4 mach_msg_trap + 8
1   libsystem_kernel.dylib         0x000000020ed7a5a0 mach_msg + 72
2   CoreFoundation                 0x000000020f17aa10 __CFRunLoopServiceMachPort + 236
3   CoreFoundation                 0x000000020f175920 __CFRunLoopRun + 1360
4   CoreFoundation                 0x000000020f1750b0 CFRunLoopRunSpecific + 436
5   GraphicsServices               0x000000021137579c GSEventRunModal + 104
6   UIKitCore                     0x000000023baef978 UIApplicationMain + 212
7   minze                         0x0000000104bea8a0 0x104be4000 + 26784
8   libdyld.dylib                 0x000000020ec3a8e0 start + 4

Thread 1:
0   libsystem_pthread.dylib       0x000000020ee0bcd0 start_wqthread + 0

Thread 2 name:  Dispatch queue: com.facebook.react.ExceptionsManagerQueue
Thread 2 Crashed:
0   libsystem_kernel.dylib         0x000000020ed860dc __pthread_kill + 8
1   libsystem_pthread.dylib       0x000000020edff094 pthread_kill$VARIANT$mp + 380
2   libsystem_c.dylib             0x000000020ecdfea8 abort + 140
3   libc++abi.dylib               0x000000020e3ac788 __cxa_bad_cast + 0
4   libc++abi.dylib               0x000000020e3ac934 default_unexpected_handler+ 6452 () + 0
5   libobjc.A.dylib               0x000000020e3c3e00 _objc_terminate+ 24064 () + 124
6   libc++abi.dylib               0x000000020e3b8838 std::__terminate(void (*)+ 55352 ()) + 16
7   libc++abi.dylib               0x000000020e3b88c4 std::terminate+ 55492 () + 84
8   libdispatch.dylib             0x000000020ec297e8 _dispatch_client_callout + 36
9   libdispatch.dylib             0x000000020ebd2320 _dispatch_lane_serial_drain$VARIANT$mp + 592
10  libdispatch.dylib             0x000000020ebd2e3c _dispatch_lane_invoke$VARIANT$mp + 428
11  libdispatch.dylib             0x000000020ebdb4a8 _dispatch_workloop_worker_thread + 596
12  libsystem_pthread.dylib       0x000000020ee09114 _pthread_wqthread + 304
13  libsystem_pthread.dylib       0x000000020ee0bcd4 start_wqthread + 4

Thread 3 name:  com.apple.uikit.eventfetch-thread
Thread 3:
0   libsystem_kernel.dylib         0x000000020ed7b0f4 mach_msg_trap + 8
1   libsystem_kernel.dylib         0x000000020ed7a5a0 mach_msg + 72
2   CoreFoundation                 0x000000020f17aa10 __CFRunLoopServiceMachPort + 236
3   CoreFoundation                 0x000000020f175920 __CFRunLoopRun + 1360
4   CoreFoundation                 0x000000020f1750b0 CFRunLoopRunSpecific + 436
5   Foundation                     0x000000020fb42fac -[NSRunLoop+ 32684 (NSRunLoop) runMode:beforeDate:] + 300
6   Foundation                     0x000000020fb42e3c -[NSRunLoop+ 32316 (NSRunLoop) runUntilDate:] + 96
7   UIKitCore                     0x000000023bbd5494 -[UIEventFetcher threadMain] + 136
8   Foundation                     0x000000020fc6f6a4 __NSThread__start__ + 984
9   libsystem_pthread.dylib       0x000000020ee082c0 _pthread_body + 128
10  libsystem_pthread.dylib       0x000000020ee08220 _pthread_start + 44
11  libsystem_pthread.dylib       0x000000020ee0bcdc thread_start + 4

Thread 4 name:  com.facebook.react.JavaScript
Thread 4:
0   libsystem_kernel.dylib         0x000000020ed7b0f4 mach_msg_trap + 8
1   libsystem_kernel.dylib         0x000000020ed7a5a0 mach_msg + 72
2   CoreFoundation                 0x000000020f17aa10 __CFRunLoopServiceMachPort + 236
3   CoreFoundation                 0x000000020f175920 __CFRunLoopRun + 1360
4   CoreFoundation                 0x000000020f1750b0 CFRunLoopRunSpecific + 436
5   React                         0x0000000104e9e8fc 0x104e50000 + 321788
6   Foundation                     0x000000020fc6f6a4 __NSThread__start__ + 984
7   libsystem_pthread.dylib       0x000000020ee082c0 _pthread_body + 128
8   libsystem_pthread.dylib       0x000000020ee08220 _pthread_start + 44
9   libsystem_pthread.dylib       0x000000020ee0bcdc thread_start + 4

Thread 5 name:  JavaScriptCore bmalloc scavenger
Thread 5:
0   libsystem_kernel.dylib         0x000000020ed85ee4 __psynch_cvwait + 8
1   libsystem_pthread.dylib       0x000000020ee00cf8 _pthread_cond_wait$VARIANT$mp + 636
2   libc++.1.dylib                 0x000000020e35d128 std::__1::condition_variable::__do_timed_wait+ 33064 (std::__1::unique_lock<std::__1::mutex>&, std::__1::chrono::time_point<std::__1::chrono::system_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > >) + 96
3   JavaScriptCore                 0x0000000216385fcc std::__1::cv_status std::__1::condition_variable::wait_until<std::__1::chrono::steady_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > >+ 589772 (std::__1::unique_lock<std::__1::mutex>&, std::__1::chrono::time_point<std::__1::chrono::steady_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > > const&) + 124
4   JavaScriptCore                 0x0000000216385e7c std::__1::cv_status std::__1::condition_variable_any::wait_until<std::__1::unique_lock<bmalloc::Mutex>, std::__1::chrono::steady_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > >+ 589436 (std::__1::unique_lock<bmalloc::Mutex>&, std::__1::chrono::time_point<std::__1::chrono::steady_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > > const&) + 116
5   JavaScriptCore                 0x0000000216384b14 bmalloc::Scavenger::threadRunLoop+ 584468 () + 296
6   JavaScriptCore                 0x0000000216384214 bmalloc::Scavenger::Scavenger+ 582164 (std::__1::lock_guard<bmalloc::Mutex>&) + 0
7   JavaScriptCore                 0x0000000216385c54 std::__1::__thread_specific_ptr<std::__1::__thread_struct>::set_pointer+ 588884 (std::__1::__thread_struct*) + 0
8   libsystem_pthread.dylib       0x000000020ee082c0 _pthread_body + 128
9   libsystem_pthread.dylib       0x000000020ee08220 _pthread_start + 44
10  libsystem_pthread.dylib       0x000000020ee0bcdc thread_start + 4

Thread 6:
0   libsystem_pthread.dylib       0x000000020ee0bcd0 start_wqthread + 0

Thread 7 name:  JSC Heap Collector Thread
Thread 7:
0   libsystem_kernel.dylib         0x000000020ed85ee4 __psynch_cvwait + 8
1   libsystem_pthread.dylib       0x000000020ee00cf8 _pthread_cond_wait$VARIANT$mp + 636
2   JavaScriptCore                 0x0000000216347594 WTF::ThreadCondition::timedWait+ 333204 (WTF::Mutex&, WTF::WallTime) + 144
3   JavaScriptCore                 0x000000021632e1dc WTF::ParkingLot::parkConditionallyImpl(void const*, WTF::ScopedLambda<bool ()> const&, WTF::ScopedLambda<void + 229852 ()> const&, WTF::TimeWithDynamicClockType const&) + 2004
4   JavaScriptCore                 0x0000000216302020 bool WTF::Condition::waitUntil<WTF::Lock>+ 49184 (WTF::Lock&, WTF::TimeWithDynamicClockType const&) + 184
5   JavaScriptCore                 0x00000002163023b0 WTF::Function<void ()>::CallableWrapper<WTF::AutomaticThread::start(WTF::AbstractLocker const&)::$_0>::call+ 50096 () + 216
6   JavaScriptCore                 0x00000002163457f8 WTF::Thread::entryPoint+ 325624 (WTF::Thread::NewThreadContext*) + 260
7   JavaScriptCore                 0x0000000216346d04 WTF::wtfThreadEntryPoint+ 331012 (void*) + 12
8   libsystem_pthread.dylib       0x000000020ee082c0 _pthread_body + 128
9   libsystem_pthread.dylib       0x000000020ee08220 _pthread_start + 44
10  libsystem_pthread.dylib       0x000000020ee0bcdc thread_start + 4

Thread 8:
0   libsystem_pthread.dylib       0x000000020ee0bcd0 start_wqthread + 0

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

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

Thread 11:
0   libsystem_pthread.dylib       0x000000020ee0bcd0 start_wqthread + 0

Thread 12 name:  Heap Helper Thread
Thread 12:
0   libsystem_kernel.dylib         0x000000020ed85ee4 __psynch_cvwait + 8
1   libsystem_pthread.dylib       0x000000020ee00cf8 _pthread_cond_wait$VARIANT$mp + 636
2   JavaScriptCore                 0x0000000216347594 WTF::ThreadCondition::timedWait+ 333204 (WTF::Mutex&, WTF::WallTime) + 144
3   JavaScriptCore                 0x000000021632e1dc WTF::ParkingLot::parkConditionallyImpl(void const*, WTF::ScopedLambda<bool ()> const&, WTF::ScopedLambda<void + 229852 ()> const&, WTF::TimeWithDynamicClockType const&) + 2004
4   JavaScriptCore                 0x0000000216302020 bool WTF::Condition::waitUntil<WTF::Lock>+ 49184 (WTF::Lock&, WTF::TimeWithDynamicClockType const&) + 184
5   JavaScriptCore                 0x00000002163023b0 WTF::Function<void ()>::CallableWrapper<WTF::AutomaticThread::start(WTF::AbstractLocker const&)::$_0>::call+ 50096 () + 216
6   JavaScriptCore                 0x00000002163457f8 WTF::Thread::entryPoint+ 325624 (WTF::Thread::NewThreadContext*) + 260
7   JavaScriptCore                 0x0000000216346d04 WTF::wtfThreadEntryPoint+ 331012 (void*) + 12
8   libsystem_pthread.dylib       0x000000020ee082c0 _pthread_body + 128
9   libsystem_pthread.dylib       0x000000020ee08220 _pthread_start + 44
10  libsystem_pthread.dylib       0x000000020ee0bcdc thread_start + 4

Thread 2 crashed with ARM Thread State (64-bit):
    x0: 0x0000000000000000   x1: 0x0000000000000000   x2: 0x0000000000000000   x3: 0x000000028335d9b7
    x4: 0x000000020e3bbb71   x5: 0x000000016b3ba460   x6: 0x000000000000006e   x7: 0xffffffffffffffec
    x8: 0x0000000000000c00   x9: 0x000000020ee03888  x10: 0x000000020edfef18  x11: 0x0000000000000003
   x12: 0x0000000000000000  x13: 0x0000000000000001  x14: 0x0000000000000010  x15: 0x000000000000000d
   x16: 0x0000000000000148  x17: 0x0000000000000000  x18: 0x0000000000000000  x19: 0x0000000000000006
   x20: 0x000000016b3bb000  x21: 0x000000016b3ba460  x22: 0x0000000000002803  x23: 0x000000016b3bb0e0
   x24: 0x000000028085b340  x25: 0x0000000000000000  x26: 0x000000028085b340  x27: 0x0000000000000000
   x28: 0x000000016b3bb0e0   fp: 0x000000016b3ba3c0   lr: 0x000000020edff094
    sp: 0x000000016b3ba390   pc: 0x000000020ed860dc cpsr: 0x00000000

@getaaron
Copy link
Contributor Author

@grabbou @hramos see above, I believe this issue was closed erroneously

@MaximilianoRG
Copy link

MaximilianoRG commented Sep 24, 2019

Same situation here. I was doing well programming in react native, but with this I dont know what to do. Hope any help guys.

Incident Identifier: 92794F51-C4E1-437D-9287-1D4871DEC991
CrashReporter Key: 4f17dcb892fa962679a95fb25ff7fb210ab3446c
Hardware Model: iPhone9,1
Process: appRN [6085]
Path: /private/var/containers/Bundle/Application/552957F5-87FD-490B-914F-FE76CF1F6FCA/appRN.app/appRN
Identifier: com.reactnative.appRN
Version: 1.2.3 (1.2.3)
AppStoreTools: 10G8
Code Type: ARM-64 (Native)
Role: Non UI
Parent Process: launchd [1]
Coalition: com.reactnative.appRN [1406]

Date/Time: 2019-09-23 18:57:42.1148 -0500
Launch Time: 2019-09-23 18:57:14.2872 -0500
OS Version: iPhone OS 12.2 (16E227)
Baseband Version: 5.55.00
Report Version: 104

Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note: EXC_CORPSE_NOTIFY
Triggered by Thread: 1

Application Specific Information:
abort() called

Last Exception Backtrace:
0 CoreFoundation 0x1c334c518 __exceptionPreprocess + 228
1 libobjc.A.dylib 0x1c25279f8 objc_exception_throw + 55
2 appRN 0x10235b748 hidden#4173 + 325448 (_hidden#4189:146)
3 appRN 0x10237d76c hidden#5857 + 464748 (hidden#5877:58)
4 CoreFoundation 0x1c3353ba0 invoking
+ 143
5 CoreFoundation 0x1c3235c90 -[NSInvocation invoke] + 291
6 CoreFoundation 0x1c32368c4 -[NSInvocation invokeWithTarget:] + 59
7 appRN 0x10238fd00 hidden#6625 + 539904 (_hidden#6654:569)
8 appRN 0x102391fe4 hidden#6740 + 548836 (_hidden#6756:108)
9 appRN 0x102391d48 hidden#6736 + 548168 (_hidden#6756:73)
10 libdispatch.dylib 0x1c2d8ca38 _dispatch_call_block_and_release + 23
11 libdispatch.dylib 0x1c2d8d7d4 _dispatch_client_callout + 15
12 libdispatch.dylib 0x1c2d36320 _dispatch_lane_serial_drain$VARIANT$mp + 591
13 libdispatch.dylib 0x1c2d36e3c _dispatch_lane_invoke$VARIANT$mp + 427
14 libdispatch.dylib 0x1c2d3f4a8 _dispatch_workloop_worker_thread + 595
15 libsystem_pthread.dylib 0x1c2f6d114 _pthread_wqthread + 303
16 libsystem_pthread.dylib 0x1c2f6fcd4 start_wqthread + 3

Thread 0 name: Dispatch queue: com.apple.main-thread
Thread 0:
0 CoreFoundation 0x00000001c32df920 _CFRelease + 284
1 CoreFoundation 0x00000001c32df8c4 _CFRelease + 192
2 UIFoundation 0x00000001cd969390 -[NSStorage dealloc] + 44
3 UIFoundation 0x00000001cd940acc -[NSLayoutManager dealloc] + 256
4 CoreFoundation 0x00000001c32ad178 cow_cleanup + 112
5 CoreFoundation 0x00000001c3236c94 -[__NSArrayM dealloc] + 68
6 UIFoundation 0x00000001cd93dde0 -[NSTextStorage dealloc] + 116
7 UIFoundation 0x00000001cd94344c -[NSConcreteTextStorage dealloc] + 108
8 appRN 0x00000001023fd97c hidden#11370 + 989564 (_hidden#11386:31)
9 libobjc.A.dylib 0x00000001c25267cc object_cxxDestructFromClass+ 18380 (objc_object*, objc_class*) + 148
10 libobjc.A.dylib 0x00000001c25366b8 objc_destructInstance + 68
11 libobjc.A.dylib 0x00000001c2536720 object_dispose + 16
12 UIKitCore 0x00000001ef8b9ac0 -[UIResponder dealloc] + 152
13 UIKitCore 0x00000001efceb948 -[UIView dealloc] + 984
14 CoreFoundation 0x00000001c32ad178 cow_cleanup + 112
15 CoreFoundation 0x00000001c3236c94 -[__NSArrayM dealloc] + 68
16 libobjc.A.dylib 0x00000001c253c754 _object_remove_assocations + 468
17 libobjc.A.dylib 0x00000001c25366d4 objc_destructInstance + 96
18 libobjc.A.dylib 0x00000001c2536720 object_dispose + 16
19 UIKitCore 0x00000001ef8b9ac0 -[UIResponder dealloc] + 152
20 UIKitCore 0x00000001efceb948 -[UIView dealloc] + 984
21 appRN 0x00000001023c349c hidden#8933 + 750748 (_hidden#9015:947)
22 CoreFoundation 0x00000001c32ad178 cow_cleanup + 112
23 CoreFoundation 0x00000001c3236c94 -[__NSArrayM dealloc] + 68
24 libobjc.A.dylib 0x00000001c253c754 _object_remove_assocations + 468
25 libobjc.A.dylib 0x00000001c25366d4 objc_destructInstance + 96
26 libobjc.A.dylib 0x00000001c2536720 object_dispose + 16
27 UIKitCore 0x00000001ef8b9ac0 -[UIResponder dealloc] + 152
28 UIKitCore 0x00000001efceb948 -[UIView dealloc] + 984
29 appRN 0x00000001023c349c hidden#8933 + 750748 (_hidden#9015:947)
30 CoreFoundation 0x00000001c32ad178 cow_cleanup + 112
31 CoreFoundation 0x00000001c3236c94 -[__NSArrayM dealloc] + 68
32 libobjc.A.dylib 0x00000001c253c754 _object_remove_assocations + 468
33 libobjc.A.dylib 0x00000001c25366d4 objc_destructInstance + 96
34 libobjc.A.dylib 0x00000001c2536720 object_dispose + 16
35 UIKitCore 0x00000001ef8b9ac0 -[UIResponder dealloc] + 152
36 UIKitCore 0x00000001efceb948 -[UIView dealloc] + 984
37 appRN 0x00000001023c349c hidden#8933 + 750748 (_hidden#9015:947)
38 CoreFoundation 0x00000001c32ad178 cow_cleanup + 112
39 CoreFoundation 0x00000001c3236c94 -[__NSArrayM dealloc] + 68
40 libobjc.A.dylib 0x00000001c253c754 _object_remove_assocations + 468
41 libobjc.A.dylib 0x00000001c25366d4 objc_destructInstance + 96
42 libobjc.A.dylib 0x00000001c2536720 object_dispose + 16
43 UIKitCore 0x00000001ef8b9ac0 -[UIResponder dealloc] + 152
44 UIKitCore 0x00000001efceb948 -[UIView dealloc] + 984
45 appRN 0x00000001023c349c hidden#8933 + 750748 (_hidden#9015:947)
46 CoreFoundation 0x00000001c32ad178 cow_cleanup + 112
47 CoreFoundation 0x00000001c3236c94 -[__NSArrayM dealloc] + 68
48 libobjc.A.dylib 0x00000001c253c754 _object_remove_assocations + 468
49 libobjc.A.dylib 0x00000001c25366d4 objc_destructInstance + 96
50 libobjc.A.dylib 0x00000001c2536720 object_dispose + 16
51 UIKitCore 0x00000001ef8b9ac0 -[UIResponder dealloc] + 152
52 UIKitCore 0x00000001efceb948 -[UIView dealloc] + 984
53 appRN 0x00000001023c349c hidden#8933 + 750748 (_hidden#9015:947)
54 appRN 0x000000010239c9c4 hidden#7338 + 592324 (_hidden#7506:536)
55 CoreFoundation 0x00000001c32ad178 cow_cleanup + 112
56 CoreFoundation 0x00000001c3236c94 -[__NSArrayM dealloc] + 68
57 libobjc.A.dylib 0x00000001c253c754 _object_remove_assocations + 468
58 libobjc.A.dylib 0x00000001c25366d4 objc_destructInstance + 96
59 libobjc.A.dylib 0x00000001c2536720 object_dispose + 16
60 UIKitCore 0x00000001ef8b9ac0 -[UIResponder dealloc] + 152
61 UIKitCore 0x00000001efceb948 -[UIView dealloc] + 984
62 appRN 0x00000001023c349c hidden#8933 + 750748 (_hidden#9015:947)
63 CoreFoundation 0x00000001c32ad178 cow_cleanup + 112
64 CoreFoundation 0x00000001c3236c94 -[__NSArrayM dealloc] + 68
65 libobjc.A.dylib 0x00000001c253c754 _object_remove_assocations + 468
66 libobjc.A.dylib 0x00000001c25366d4 objc_destructInstance + 96
67 libobjc.A.dylib 0x00000001c2536720 object_dispose + 16
68 UIKitCore 0x00000001ef8b9ac0 -[UIResponder dealloc] + 152
69 UIKitCore 0x00000001efceb948 -[UIView dealloc] + 984
70 appRN 0x00000001023c349c hidden#8933 + 750748 (_hidden#9015:947)
71 CoreFoundation 0x00000001c32ad178 cow_cleanup + 112
72 CoreFoundation 0x00000001c3236c94 -[__NSArrayM dealloc] + 68
73 libobjc.A.dylib 0x00000001c253c754 _object_remove_assocations + 468
74 libobjc.A.dylib 0x00000001c25366d4 objc_destructInstance + 96
75 libobjc.A.dylib 0x00000001c2536720 object_dispose + 16
76 UIKitCore 0x00000001ef8b9ac0 -[UIResponder dealloc] + 152
77 UIKitCore 0x00000001efceb948 -[UIView dealloc] + 984
78 appRN 0x00000001023c349c hidden#8933 + 750748 (_hidden#9015:947)
79 CoreFoundation 0x00000001c32ad178 cow_cleanup + 112
80 CoreFoundation 0x00000001c3236c94 -[__NSArrayM dealloc] + 68
81 libobjc.A.dylib 0x00000001c253c754 _object_remove_assocations + 468
82 libobjc.A.dylib 0x00000001c25366d4 objc_destructInstance + 96
83 libobjc.A.dylib 0x00000001c2536720 object_dispose + 16
84 UIKitCore 0x00000001ef8b9ac0 -[UIResponder dealloc] + 152
85 UIKitCore 0x00000001efceb948 -[UIView dealloc] + 984
86 appRN 0x00000001023c349c hidden#8933 + 750748 (_hidden#9015:947)
87 CoreFoundation 0x00000001c32ad178 cow_cleanup + 112
88 CoreFoundation 0x00000001c3236c94 -[__NSArrayM dealloc] + 68
89 libobjc.A.dylib 0x00000001c253c754 _object_remove_assocations + 468
90 libobjc.A.dylib 0x00000001c25366d4 objc_destructInstance + 96
91 libobjc.A.dylib 0x00000001c2536720 object_dispose + 16
92 UIKitCore 0x00000001ef8b9ac0 -[UIResponder dealloc] + 152
93 UIKitCore 0x00000001efceb948 -[UIView dealloc] + 984
94 appRN 0x00000001023c349c hidden#8933 + 750748 (_hidden#9015:947)
95 CoreFoundation 0x00000001c32ad178 cow_cleanup + 112
96 CoreFoundation 0x00000001c3236c94 -[__NSArrayM dealloc] + 68
97 libobjc.A.dylib 0x00000001c253c754 _object_remove_assocations + 468
98 libobjc.A.dylib 0x00000001c25366d4 objc_destructInstance + 96
99 libobjc.A.dylib 0x00000001c2536720 object_dispose + 16
100 UIKitCore 0x00000001ef8b9ac0 -[UIResponder dealloc] + 152
101 UIKitCore 0x00000001efceb948 -[UIView dealloc] + 984
102 appRN 0x00000001023c349c hidden#8933 + 750748 (_hidden#9015:947)
103 libobjc.A.dylib 0x00000001c2541b9c (anonymous namespace)::AutoreleasePoolPage::pop+ 129948 (void*) + 672
104 CoreFoundation 0x00000001c3359f40 _CFAutoreleasePoolPop + 28
105 CoreFoundation 0x00000001c32d8e00 __CFRunLoopRun + 1932
106 CoreFoundation 0x00000001c32d8354 CFRunLoopRunSpecific + 436
107 GraphicsServices 0x00000001c54d879c GSEventRunModal + 104
108 UIKitCore 0x00000001ef88fb68 UIApplicationMain + 212
109 appRN 0x00000001023130f0 main + 28912 (_hidden#20:16)
110 libdyld.dylib 0x00000001c2d9e8e0 start + 4

Thread 1 name: Dispatch queue: com.facebook.react.ExceptionsManagerQueue
Thread 1 Crashed:
0 libsystem_kernel.dylib 0x00000001c2eea0dc __pthread_kill + 8
1 libsystem_pthread.dylib 0x00000001c2f63094 pthread_kill$VARIANT$mp + 380
2 libsystem_c.dylib 0x00000001c2e43ea8 abort + 140
3 libc++abi.dylib 0x00000001c2510788 __cxa_bad_cast + 0
4 libc++abi.dylib 0x00000001c2510934 default_unexpected_handler+ 6452 () + 0
5 libobjc.A.dylib 0x00000001c2527e00 _objc_terminate+ 24064 () + 124
6 libc++abi.dylib 0x00000001c251c838 std::__terminate(void (*)+ 55352 ()) + 16
7 libc++abi.dylib 0x00000001c251c8c4 std::terminate+ 55492 () + 84
8 libdispatch.dylib 0x00000001c2d8d7e8 _dispatch_client_callout + 36
9 libdispatch.dylib 0x00000001c2d36320 _dispatch_lane_serial_drain$VARIANT$mp + 592
10 libdispatch.dylib 0x00000001c2d36e3c _dispatch_lane_invoke$VARIANT$mp + 428
11 libdispatch.dylib 0x00000001c2d3f4a8 _dispatch_workloop_worker_thread + 596
12 libsystem_pthread.dylib 0x00000001c2f6d114 _pthread_wqthread + 304
13 libsystem_pthread.dylib 0x00000001c2f6fcd4 start_wqthread + 4

Thread 2 name: com.apple.uikit.eventfetch-thread
Thread 2:
0 libsystem_kernel.dylib 0x00000001c2edf0f4 mach_msg_trap + 8
1 libsystem_kernel.dylib 0x00000001c2ede5a0 mach_msg + 72
2 CoreFoundation 0x00000001c32ddcb4 __CFRunLoopServiceMachPort + 236
3 CoreFoundation 0x00000001c32d8bc4 __CFRunLoopRun + 1360
4 CoreFoundation 0x00000001c32d8354 CFRunLoopRunSpecific + 436
5 Foundation 0x00000001c3ca5fcc -[NSRunLoop+ 32716 (NSRunLoop) runMode:beforeDate:] + 300
6 Foundation 0x00000001c3ca5e5c -[NSRunLoop+ 32348 (NSRunLoop) runUntilDate:] + 96
7 UIKitCore 0x00000001ef975540 -[UIEventFetcher threadMain] + 136
8 Foundation 0x00000001c3dd26e4 NSThread__start + 984
9 libsystem_pthread.dylib 0x00000001c2f6c2c0 _pthread_body + 128
10 libsystem_pthread.dylib 0x00000001c2f6c220 _pthread_start + 44
11 libsystem_pthread.dylib 0x00000001c2f6fcdc thread_start + 4

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

Thread 4 name: com.facebook.react.JavaScript
Thread 4:
0 libsystem_kernel.dylib 0x00000001c2edf0f4 mach_msg_trap + 8
1 libsystem_kernel.dylib 0x00000001c2ede5a0 mach_msg + 72
2 CoreFoundation 0x00000001c32ddcb4 __CFRunLoopServiceMachPort + 236
3 CoreFoundation 0x00000001c32d8bc4 __CFRunLoopRun + 1360
4 CoreFoundation 0x00000001c32d8354 CFRunLoopRunSpecific + 436
5 appRN 0x000000010236ed44 hidden#4917 + 404804 (_hidden#5242:0)
6 Foundation 0x00000001c3dd26e4 NSThread__start + 984
7 libsystem_pthread.dylib 0x00000001c2f6c2c0 _pthread_body + 128
8 libsystem_pthread.dylib 0x00000001c2f6c220 _pthread_start + 44
9 libsystem_pthread.dylib 0x00000001c2f6fcdc thread_start + 4

Thread 5 name: JavaScriptCore bmalloc scavenger
Thread 5:
0 libsystem_kernel.dylib 0x00000001c2ee9ee4 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x00000001c2f64cf8 _pthread_cond_wait$VARIANT$mp + 636
2 libc++.1.dylib 0x00000001c24c1128 std::__1::condition_variable::__do_timed_wait+ 33064 (std::__1::unique_lockstd::__1::mutex&, std::__1::chrono::time_point<std::__1::chrono::system_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > >) + 96
3 JavaScriptCore 0x00000001ca4b375c std::__1::cv_status std::__1::condition_variable::wait_until<std::__1::chrono::steady_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > >+ 587612 (std::__1::unique_lockstd::__1::mutex&, std::__1::chrono::time_point<std::__1::chrono::steady_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > > const&) + 124
4 JavaScriptCore 0x00000001ca4b360c std::__1::cv_status std::__1::condition_variable_any::wait_until<std::__1::unique_lockbmalloc::Mutex, std::__1::chrono::steady_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > >+ 587276 (std::__1::unique_lockbmalloc::Mutex&, std::__1::chrono::time_point<std::__1::chrono::steady_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > > const&) + 116
5 JavaScriptCore 0x00000001ca4b22a4 bmalloc::Scavenger::threadRunLoop+ 582308 () + 296
6 JavaScriptCore 0x00000001ca4b19a4 bmalloc::Scavenger::Scavenger+ 580004 (std::__1::lock_guardbmalloc::Mutex&) + 0
7 JavaScriptCore 0x00000001ca4b33e4 std::__1::__thread_specific_ptrstd::__1::__thread_struct::set_pointer+ 586724 (std::__1::__thread_struct*) + 0
8 libsystem_pthread.dylib 0x00000001c2f6c2c0 _pthread_body + 128
9 libsystem_pthread.dylib 0x00000001c2f6c220 _pthread_start + 44
10 libsystem_pthread.dylib 0x00000001c2f6fcdc thread_start + 4

Thread 6 name: com.apple.CoreMotion.MotionThread
Thread 6:
0 libsystem_kernel.dylib 0x00000001c2edf0f4 mach_msg_trap + 8
1 libsystem_kernel.dylib 0x00000001c2ede5a0 mach_msg + 72
2 CoreFoundation 0x00000001c32ddcb4 __CFRunLoopServiceMachPort + 236
3 CoreFoundation 0x00000001c32d8bc4 __CFRunLoopRun + 1360
4 CoreFoundation 0x00000001c32d8354 CFRunLoopRunSpecific + 436
5 CoreFoundation 0x00000001c32d90b0 CFRunLoopRun + 80
6 CoreMotion 0x00000001c8bfc240 0x1c8b87000 + 479808
7 libsystem_pthread.dylib 0x00000001c2f6c2c0 _pthread_body + 128
8 libsystem_pthread.dylib 0x00000001c2f6c220 _pthread_start + 44
9 libsystem_pthread.dylib 0x00000001c2f6fcdc thread_start + 4

Thread 7:
0 libsystem_pthread.dylib 0x00000001c2f6fcd0 start_wqthread + 0

Thread 8 name: Heap Helper Thread
Thread 8:
0 libsystem_kernel.dylib 0x00000001c2ee9ee4 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x00000001c2f64cf8 _pthread_cond_wait$VARIANT$mp + 636
2 JavaScriptCore 0x00000001ca474d24 WTF::ThreadCondition::timedWait+ 331044 (WTF::Mutex&, WTF::WallTime) + 144
3 JavaScriptCore 0x00000001ca45b96c WTF::ParkingLot::parkConditionallyImpl(void const*, WTF::ScopedLambda<bool ()> const&, WTF::ScopedLambda<void + 227692 ()> const&, WTF::TimeWithDynamicClockType const&) + 2004
4 JavaScriptCore 0x00000001ca42f7b0 bool WTF::Condition::waitUntilWTF::Lock+ 47024 (WTF::Lock&, WTF::TimeWithDynamicClockType const&) + 184
5 JavaScriptCore 0x00000001ca42fb40 WTF::Function<void ()>::CallableWrapper<WTF::AutomaticThread::start(WTF::AbstractLocker const&)::$_0>::call+ 47936 () + 216
6 JavaScriptCore 0x00000001ca472f88 WTF::Thread::entryPoint+ 323464 (WTF::Thread::NewThreadContext*) + 260
7 JavaScriptCore 0x00000001ca474494 WTF::wtfThreadEntryPoint+ 328852 (void*) + 12
8 libsystem_pthread.dylib 0x00000001c2f6c2c0 _pthread_body + 128
9 libsystem_pthread.dylib 0x00000001c2f6c220 _pthread_start + 44
10 libsystem_pthread.dylib 0x00000001c2f6fcdc thread_start + 4

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

Thread 10 name: com.apple.NSURLConnectionLoader
Thread 10:
0 libsystem_kernel.dylib 0x00000001c2edf0f4 mach_msg_trap + 8
1 libsystem_kernel.dylib 0x00000001c2ede5a0 mach_msg + 72
2 CoreFoundation 0x00000001c32ddcb4 __CFRunLoopServiceMachPort + 236
3 CoreFoundation 0x00000001c32d8bc4 __CFRunLoopRun + 1360
4 CoreFoundation 0x00000001c32d8354 CFRunLoopRunSpecific + 436
5 CFNetwork 0x00000001c38f174c -[__CoreSchedulingSetRunnable runForever] + 216
6 Foundation 0x00000001c3dd26e4 NSThread__start + 984
7 libsystem_pthread.dylib 0x00000001c2f6c2c0 _pthread_body + 128
8 libsystem_pthread.dylib 0x00000001c2f6c220 _pthread_start + 44
9 libsystem_pthread.dylib 0x00000001c2f6fcdc thread_start + 4

Thread 11 name: JSC Heap Collector Thread
Thread 11:
0 libsystem_kernel.dylib 0x00000001c2ee9ee4 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x00000001c2f64cf8 _pthread_cond_wait$VARIANT$mp + 636
2 JavaScriptCore 0x00000001ca474d24 WTF::ThreadCondition::timedWait+ 331044 (WTF::Mutex&, WTF::WallTime) + 144
3 JavaScriptCore 0x00000001ca45b96c WTF::ParkingLot::parkConditionallyImpl(void const*, WTF::ScopedLambda<bool ()> const&, WTF::ScopedLambda<void + 227692 ()> const&, WTF::TimeWithDynamicClockType const&) + 2004
4 JavaScriptCore 0x00000001ca42f7b0 bool WTF::Condition::waitUntilWTF::Lock+ 47024 (WTF::Lock&, WTF::TimeWithDynamicClockType const&) + 184
5 JavaScriptCore 0x00000001ca42fb40 WTF::Function<void ()>::CallableWrapper<WTF::AutomaticThread::start(WTF::AbstractLocker const&)::$_0>::call+ 47936 () + 216
6 JavaScriptCore 0x00000001ca472f88 WTF::Thread::entryPoint+ 323464 (WTF::Thread::NewThreadContext*) + 260
7 JavaScriptCore 0x00000001ca474494 WTF::wtfThreadEntryPoint+ 328852 (void*) + 12
8 libsystem_pthread.dylib 0x00000001c2f6c2c0 _pthread_body + 128
9 libsystem_pthread.dylib 0x00000001c2f6c220 _pthread_start + 44
10 libsystem_pthread.dylib 0x00000001c2f6fcdc thread_start + 4

Thread 1 crashed with ARM Thread State (64-bit):
x0: 0x0000000000000000 x1: 0x0000000000000000 x2: 0x0000000000000000 x3: 0x0000000282917bb7
x4: 0x00000001c251fb71 x5: 0x000000016dc06460 x6: 0x000000000000006e x7: 0xffffffffffffffec
x8: 0x0000000000000c00 x9: 0x00000001c2f67888 x10: 0x00000001c2f62f18 x11: 0x0000000000000003
x12: 0x0000000000000000 x13: 0x0000000000000001 x14: 0x0000000000000010 x15: 0x0000000000000013
x16: 0x0000000000000148 x17: 0x0000000000000000 x18: 0x0000000000000000 x19: 0x0000000000000006
x20: 0x000000016dc07000 x21: 0x000000016dc06460 x22: 0x0000000000000c03 x23: 0x000000016dc070e0
x24: 0x00000002812354c0 x25: 0x0000000000000000 x26: 0x0000000000000000 x27: 0x0000000000000000
x28: 0x000000016dc070e0 fp: 0x000000016dc063c0 lr: 0x00000001c2f63094
sp: 0x000000016dc06390 pc: 0x00000001c2eea0dc cpsr: 0x00000000

Binary Images:
0x10230c000 - 0x1024b7fff appRN arm64 <9e7312da54c133a78920120bf81eee77> /var/containers/Bundle/Application/552957F5-87FD-490B-914F-FE76CF1F6FCA/appRN.app/appRN
0x102664000 - 0x1026bbfff dyld arm64 <8c28034501643b82a228124b23ca0e9f> /usr/lib/dyld
0x102730000 - 0x10273bfff libobjc-trampolines.dylib arm64 /usr/lib/libobjc-trampolines.dylib
0x1c24b7000 - 0x1c24b8fff libSystem.B.dylib arm64 <8b5ad3930f0a3ea2ba9e180d1d979d8c> /usr/lib/libSystem.B.dylib
0x1c24b9000 - 0x1c250efff libc++.1.dylib arm64 <1f3ca975290139bc97a3430e0cb586ee> /usr/lib/libc++.1.dylib
0x1c250f000 - 0x1c2521fff libc++abi.dylib arm64 <9ea63d1804ce3e28b6c12cb873ccad18> /usr/lib/libc++abi.dylib
0x1c2522000 - 0x1c2ca9fff libobjc.A.dylib arm64 <6bcefc3ae6583699925f68a56dda06b5> /usr/lib/libobjc.A.dylib
0x1c2caa000 - 0x1c2caefff libcache.dylib arm64 /usr/lib/system/libcache.dylib
0x1c2caf000 - 0x1c2cbafff libcommonCrypto.dylib arm64 <3e243d7fb2283cf482b68575d889c112> /usr/lib/system/libcommonCrypto.dylib
0x1c2cbb000 - 0x1c2cbffff libcompiler_rt.dylib arm64 <60d6c3ce000c34868b0876ab06e51d1b> /usr/lib/system/libcompiler_rt.dylib
0x1c2cc0000 - 0x1c2cc8fff libcopyfile.dylib arm64 <6e86afdf5d203fc38fd2739ec830940e> /usr/lib/system/libcopyfile.dylib
0x1c2cc9000 - 0x1c2d2cfff libcorecrypto.dylib arm64 <568543130dd63ba98f7da3f441045254> /usr/lib/system/libcorecrypto.dylib
0x1c2d2d000 - 0x1c2d9cfff libdispatch.dylib arm64 <9cc8817521b2366da7f24340d383b286> /usr/lib/system/libdispatch.dylib
0x1c2d9d000 - 0x1c2dc6fff libdyld.dylib arm64 <2d8aee81500d34799da53eb3c27a7c2b> /usr/lib/system/libdyld.dylib
0x1c2dc7000 - 0x1c2dc7fff liblaunch.dylib arm64 /usr/lib/system/liblaunch.dylib
0x1c2dc8000 - 0x1c2dcdfff libmacho.dylib arm64 <1b0eeb34d4653da582c1105d68d9d844> /usr/lib/system/libmacho.dylib
0x1c2dce000 - 0x1c2dcffff libremovefile.dylib arm64 <35f75dfd93ee325dab74ed5155c40d43> /usr/lib/system/libremovefile.dylib
0x1c2dd0000 - 0x1c2de7fff libsystem_asl.dylib arm64 <7651388bca523a4eaab22545eddb45f3> /usr/lib/system/libsystem_asl.dylib
0x1c2de8000 - 0x1c2de8fff libsystem_blocks.dylib arm64 /usr/lib/system/libsystem_blocks.dylib
0x1c2de9000 - 0x1c2e6afff libsystem_c.dylib arm64 <0673635f9d0930dbacca56578ae05a3a> /usr/lib/system/libsystem_c.dylib
0x1c2e6b000 - 0x1c2e6ffff libsystem_configuration.dylib arm64 <5dcc44f2d33b3c9bb4763298bd648bde> /usr/lib/system/libsystem_configuration.dylib
0x1c2e70000 - 0x1c2e76fff libsystem_containermanager.dylib arm64 <12f2fa71d06232d382926521d1d1400b> /usr/lib/system/libsystem_containermanager.dylib
0x1c2e77000 - 0x1c2e78fff libsystem_coreservices.dylib arm64 /usr/lib/system/libsystem_coreservices.dylib
0x1c2e79000 - 0x1c2e7ffff libsystem_darwin.dylib arm64 /usr/lib/system/libsystem_darwin.dylib
0x1c2e80000 - 0x1c2e86fff libsystem_dnssd.dylib arm64 <98afca7ce6893436896feb72092fa5fe> /usr/lib/system/libsystem_dnssd.dylib
0x1c2e87000 - 0x1c2ec6fff libsystem_info.dylib arm64 <2548596fff033c66a18c497e3e1198fd> /usr/lib/system/libsystem_info.dylib
0x1c2ec7000 - 0x1c2ef1fff libsystem_kernel.dylib arm64 <8f29839b6ebe3d6d8dfe52e425f16974> /usr/lib/system/libsystem_kernel.dylib
0x1c2ef2000 - 0x1c2f1ffff libsystem_m.dylib arm64 /usr/lib/system/libsystem_m.dylib
0x1c2f20000 - 0x1c2f42fff libsystem_malloc.dylib arm64 /usr/lib/system/libsystem_malloc.dylib
0x1c2f43000 - 0x1c2f4efff libsystem_networkextension.dylib arm64 <78d1812fe5bf3f34881c4a6784fc590b> /usr/lib/system/libsystem_networkextension.dylib
0x1c2f4f000 - 0x1c2f55fff libsystem_notify.dylib arm64 <17387ea13ae63fa18078d3e8c7d0c056> /usr/lib/system/libsystem_notify.dylib
0x1c2f56000 - 0x1c2f60fff libsystem_platform.dylib arm64 <9c4ac38f927d30e79ba3ad31639c0a95> /usr/lib/system/libsystem_platform.dylib
0x1c2f61000 - 0x1c2f71fff libsystem_pthread.dylib arm64 <07458b4c926235bd835cd4b9a95f806b> /usr/lib/system/libsystem_pthread.dylib
0x1c2f72000 - 0x1c2f74fff libsystem_sandbox.dylib arm64 <35d6403cf26b3cd2b8d8f3a80c542174> /usr/lib/system/libsystem_sandbox.dylib
0x1c2f75000 - 0x1c2f7cfff libsystem_symptoms.dylib arm64 <667f6ebf812d3ac594b14f5dcbe1c45f> /usr/lib/system/libsystem_symptoms.dylib
0x1c2f7d000 - 0x1c2f92fff libsystem_trace.dylib arm64 <755f8ffba36734b583d3a78fe8516046> /usr/lib/system/libsystem_trace.dylib
0x1c2f93000 - 0x1c2f98fff libunwind.dylib arm64 <7502f3caf3a138dea911e486ae8bcb4c> /usr/lib/system/libunwind.dylib
0x1c2f99000 - 0x1c2fc6fff libxpc.dylib arm64 <2664290337cc313a995197ea1252505c> /usr/lib/system/libxpc.dylib
0x1c2fc7000 - 0x1c3221fff libicucore.A.dylib arm64 <60ace39258c93e15bf110ffe55d884aa> /usr/lib/libicucore.A.dylib
0x1c3222000 - 0x1c3233fff libz.1.dylib arm64 <5101d9f8bbd43c0d8ca2b3f7a8af0ad1> /usr/lib/libz.1.dylib
0x1c3234000 - 0x1c3590fff CoreFoundation arm64 /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
0x1c3591000 - 0x1c35a1fff libbsm.0.dylib arm64 /usr/lib/libbsm.0.dylib
0x1c35a2000 - 0x1c35a2fff libenergytrace.dylib arm64 <1e9abfecd7363966bcc3cc98c169ef2f> /usr/lib/libenergytrace.dylib
0x1c35a3000 - 0x1c3631fff IOKit arm64 /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x1c3632000 - 0x1c3719fff libxml2.2.dylib arm64 <58bb7d9c1c5a3feaad8c610c5aa93b50> /usr/lib/libxml2.2.dylib
0x1c371a000 - 0x1c3727fff libbz2.1.0.dylib arm64 /usr/lib/libbz2.1.0.dylib
0x1c3728000 - 0x1c3740fff liblzma.5.dylib arm64 <603b46956b8137de9327e47ffc81f9ac> /usr/lib/liblzma.5.dylib
0x1c3741000 - 0x1c38bafff libsqlite3.dylib arm64 /usr/lib/libsqlite3.dylib
0x1c38bb000 - 0x1c38effff libMobileGestalt.dylib arm64 <8e61e03e53293bd2a559a85fdf7681d7> /usr/lib/libMobileGestalt.dylib
0x1c38f0000 - 0x1c3c9dfff CFNetwork arm64 <2e500455fc643d9eb055bdc3b1fea492> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
0x1c3c9e000 - 0x1c3f88fff Foundation arm64 <3cfd0141927c31d19894107bb4df91f2> /System/Library/Frameworks/Foundation.framework/Foundation
0x1c3f89000 - 0x1c4097fff Security arm64 /System/Library/Frameworks/Security.framework/Security
0x1c4098000 - 0x1c4101fff SystemConfiguration arm64 <1165e502d530350b8689da62ccc0a7a3> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
0x1c4102000 - 0x1c4134fff libCRFSuite.dylib arm64 <0f29d1c5287b3a02907c3d132c4b31d9> /usr/lib/libCRFSuite.dylib
0x1c4135000 - 0x1c414bfff libapple_nghttp2.dylib arm64 /usr/lib/libapple_nghttp2.dylib
0x1c414c000 - 0x1c4175fff libarchive.2.dylib arm64 /usr/lib/libarchive.2.dylib
0x1c4176000 - 0x1c423dfff libboringssl.dylib arm64 /usr/lib/libboringssl.dylib
0x1c423e000 - 0x1c4254fff libcoretls.dylib arm64 <81737dbcc80a320ea1aa5f6e468ac69f> /usr/lib/libcoretls.dylib
0x1c4255000 - 0x1c4256fff libcoretls_cfhelpers.dylib arm64 /usr/lib/libcoretls_cfhelpers.dylib
0x1c4257000 - 0x1c4258fff liblangid.dylib arm64 <444bf9518aa13917ba40b66b65397415> /usr/lib/liblangid.dylib
0x1c4259000 - 0x1c45c9fff libnetwork.dylib arm64 <9f6c5f9956fc3809990dd32eeeee5b5d> /usr/lib/libnetwork.dylib
0x1c45ca000 - 0x1c45fdfff libpcap.A.dylib arm64 <9b2db5bd757c315bbb01d7eeef123539> /usr/lib/libpcap.A.dylib
0x1c45fe000 - 0x1c465bfff libusrtcp.dylib arm64 /usr/lib/libusrtcp.dylib
0x1c465c000 - 0x1c4668fff IOSurface arm64 <4b78555f5bb23226b6fd50f4481a40d1> /System/Library/Frameworks/IOSurface.framework/IOSurface
0x1c4669000 - 0x1c471bfff libBLAS.dylib arm64 /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
0x1c471c000 - 0x1c4a38fff libLAPACK.dylib arm64 <11fdae9a14af348785a652e6b2e964be> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
0x1c4a39000 - 0x1c4ca7fff vImage arm64 <61b7170566e131d1a1a569b393f63429> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
0x1c4ca8000 - 0x1c4cb9fff libSparseBLAS.dylib arm64 <0db560c1c791319e875bb9d9c1325fc9> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib
0x1c4cba000 - 0x1c4d14fff libvMisc.dylib arm64 /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
0x1c4d15000 - 0x1c4d43fff libBNNS.dylib arm64 <28128adc3a0837fca090098396415d16> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib
0x1c4d44000 - 0x1c4d58fff libLinearAlgebra.dylib arm64 <43a797d24bd8384d80d6af605e0ff7ee> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
0x1c4d59000 - 0x1c4d5dfff libQuadrature.dylib arm64 <141c44d952ad3aafbf4b1aa26fdc6221> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib
0x1c4d5e000 - 0x1c4dccfff libSparse.dylib arm64 <452f072aae393e75b9e760624bb0fc0f> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib
0x1c4dcd000 - 0x1c4e5dfff libvDSP.dylib arm64 <6b511e8e5f65327cb44ba60a70eed935> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
0x1c4e5e000 - 0x1c4e5efff vecLib arm64 /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
0x1c4e5f000 - 0x1c4e5ffff Accelerate arm64 <7f9d12e893c2350bab51b37c3fffbb38> /System/Library/Frameworks/Accelerate.framework/Accelerate
0x1c4e60000 - 0x1c4e77fff libcompression.dylib arm64 <9bc631e888cf3334a545730758acd90a> /usr/lib/libcompression.dylib
0x1c4e78000 - 0x1c541cfff CoreGraphics arm64 <83ac797557013c36860882aa450dc490> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
0x1c541d000 - 0x1c5422fff IOAccelerator arm64 <410890203c14350a97d57d4cbf169b80> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator
0x1c5423000 - 0x1c5428fff libCoreFSCache.dylib arm64 /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
0x1c5429000 - 0x1c54cdfff Metal arm64 /System/Library/Frameworks/Metal.framework/Metal
0x1c54ce000 - 0x1c54e0fff GraphicsServices arm64 /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
0x1c54e1000 - 0x1c54e1fff MobileCoreServices arm64 /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
0x1c54e2000 - 0x1c54e4fff IOSurfaceAccelerator arm64 <5db7f93a7511311d9d819766549dc0c2> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator
0x1c54e5000 - 0x1c5527fff AppleJPEG arm64 <9c5d31f1aa333ca9b86975049c7aeab7> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
0x1c5528000 - 0x1c5ac4fff ImageIO arm64 <1d25e77a9a28359ba0bf1dfc795eda91> /System/Library/Frameworks/ImageIO.framework/ImageIO
0x1c5ac5000 - 0x1c5b33fff BaseBoard arm64 <1311cc5dddc137ac842e26cbc139f600> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
0x1c5b34000 - 0x1c5b49fff AssertionServices arm64 <36a7a78559183d31a3d78177165e77fb> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
0x1c5b4a000 - 0x1c5b52fff CorePhoneNumbers arm64 <217d4c69032935809f9b8837fd0428f7> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/CorePhoneNumbers
0x1c5b53000 - 0x1c5b96fff AppSupport arm64 <244da2bc4a933b1aa890bbcfc4224b08> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
0x1c5b97000 - 0x1c5baffff CrashReporterSupport arm64 <1b9fae0119b33df4a5249476cfb406e0> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
0x1c5bb0000 - 0x1c5bb5fff AggregateDictionary arm64 <245f1452233a307bb4619e28bb1a8927> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
0x1c5bb6000 - 0x1c5c31fff libTelephonyUtilDynamic.dylib arm64 <77f288992aee30b2bc534a94894ca762> /usr/lib/libTelephonyUtilDynamic.dylib
0x1c5c32000 - 0x1c5c50fff ProtocolBuffer arm64 <8eea362822d53b0a8324ad7416037c7c> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
0x1c5c51000 - 0x1c5c7ffff MobileKeyBag arm64 /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
0x1c5c80000 - 0x1c5cbafff BackBoardServices arm64 /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
0x1c5cbb000 - 0x1c5d1dfff FrontBoardServices arm64 <273055fc8e8a3c09937f88daecb43f2c> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
0x1c5d1e000 - 0x1c5d63fff SpringBoardServices arm64 <1dc2c0c8dcea3930bddfb6661f1d10e1> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
0x1c5d64000 - 0x1c5d77fff PowerLog arm64 /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog
0x1c5d78000 - 0x1c5d92fff CommonUtilities arm64 <47e2d249aff1344191feac9f611bf041> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
0x1c5d93000 - 0x1c5d9efff liblockdown.dylib arm64 /usr/lib/liblockdown.dylib
0x1c5d9f000 - 0x1c60c0fff CoreData arm64 <0e99b0167a2a3b2da844a8f907dfe83a> /System/Library/Frameworks/CoreData.framework/CoreData
0x1c60c1000 - 0x1c60c8fff TCC arm64 /System/Library/PrivateFrameworks/TCC.framework/TCC
0x1c60c9000 - 0x1c60d0fff libcupolicy.dylib arm64 /usr/lib/libcupolicy.dylib
0x1c60d1000 - 0x1c61a4fff CoreTelephony arm64 <3ff34367a89a3cb4b2133d59e6d9a3ba> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
0x1c61a5000 - 0x1c61fcfff Accounts arm64 /System/Library/Frameworks/Accounts.framework/Accounts
0x1c61fd000 - 0x1c6220fff AppleSauce arm64 /System/Library/PrivateFrameworks/AppleSauce.framework/AppleSauce
0x1c6221000 - 0x1c6229fff DataMigration arm64 <856bcde07b3637459620250637c0318e> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
0x1c622a000 - 0x1c6230fff Netrb arm64 /System/Library/PrivateFrameworks/Netrb.framework/Netrb
0x1c6231000 - 0x1c6262fff PersistentConnection arm64 <8888e0a920c23cedb97ca4c7bec1a9c1> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
0x1c6263000 - 0x1c6273fff libmis.dylib arm64 <7e5361e388ce33059391156276b89f93> /usr/lib/libmis.dylib
0x1c6274000 - 0x1c6379fff ManagedConfiguration arm64 /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
0x1c637a000 - 0x1c637ffff libReverseProxyDevice.dylib arm64 /usr/lib/libReverseProxyDevice.dylib
0x1c6380000 - 0x1c6392fff libamsupport.dylib arm64 /usr/lib/libamsupport.dylib
0x1c6393000 - 0x1c6398fff libCoreVMClient.dylib arm64 <1d7e1cd92ff534a8a1657f3698272d60> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
0x1c6399000 - 0x1c639afff libCVMSPluginSupport.dylib arm64 /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
0x1c639b000 - 0x1c639efff libutil.dylib arm64 <56b3ce9b190b3cb3a056df390d366cd7> /usr/lib/libutil.dylib
0x1c639f000 - 0x1c63dcfff libGLImage.dylib arm64 <64d6048c87473c22909a3a50ad963ab9> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
0x1c63dd000 - 0x1c645afff APFS arm64 <9988f183c66e3f1fb1d29485427f53f7> /System/Library/PrivateFrameworks/APFS.framework/APFS
0x1c645b000 - 0x1c648cfff MediaKit arm64 <9e861f8858a3328ba8cbbfd22fa4f7e3> /System/Library/PrivateFrameworks/MediaKit.framework/MediaKit
0x1c648d000 - 0x1c64a7fff libSERestoreInfo.dylib arm64 /usr/lib/updaters/libSERestoreInfo.dylib
0x1c64ae000 - 0x1c64e8fff DiskImages arm64 <0fe84d19dc4f3db39f4883a089e23520> /System/Library/PrivateFrameworks/DiskImages.framework/DiskImages
0x1c64e9000 - 0x1c64f2fff libGFXShared.dylib arm64 <3ac54a58396030a2badfc5d292c80c03> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
0x1c64f3000 - 0x1c6540fff libauthinstall.dylib arm64 /usr/lib/libauthinstall.dylib
0x1c6541000 - 0x1c6549fff IOMobileFramebuffer arm64 <263af650b30c3a41a2e1b682d2912cdc> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
0x1c654a000 - 0x1c6554fff OpenGLES arm64 <76de3e7577c6366085ee8c71ac33b7ff> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
0x1c6555000 - 0x1c65f3fff ColorSync arm64 <5cbc7b09b27933979b605b6f77b4c58c> /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync
0x1c65f4000 - 0x1c6622fff CoreVideo arm64 <209039cb0b4e3fb288dff75b765e2ab5> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
0x1c6623000 - 0x1c6624fff libCTGreenTeaLogger.dylib arm64 <7aed23ea7400322aa395389a2cbf2d43> /usr/lib/libCTGreenTeaLogger.dylib
0x1c6625000 - 0x1c6776fff CoreAudio arm64 <849b9051566037ebb9b7e345ccd74f63> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
0x1c6777000 - 0x1c6796fff CoreAnalytics arm64 <8d8b51f4803635e1b9cf40730dee8406> /System/Library/PrivateFrameworks/CoreAnalytics.framework/CoreAnalytics
0x1c6797000 - 0x1c679afff UserFS arm64 <225c0b7be9c233399f9ea659a9476bec> /System/Library/PrivateFrameworks/UserFS.framework/UserFS
0x1c679b000 - 0x1c693dfff CoreMedia arm64 <3c5b18fc4b953bf6a7f8280615177f5a> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
0x1c693e000 - 0x1c6950fff libprotobuf-lite.dylib arm64 /usr/lib/libprotobuf-lite.dylib
0x1c6951000 - 0x1c69aefff libprotobuf.dylib arm64 /usr/lib/libprotobuf.dylib
0x1c69af000 - 0x1c6cccfff libAWDSupportFramework.dylib arm64 <77d6279b41b239f5a65523936e6ddfad> /usr/lib/libAWDSupportFramework.dylib
0x1c6ccd000 - 0x1c6d12fff WirelessDiagnostics arm64 <23851bdb571c380e8901a6e14b6a01ad> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics
0x1c6d13000 - 0x1c6dd0fff VideoToolbox arm64 <7b6c9ea550cc3827a42fffa17d11f873> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
0x1c6dd1000 - 0x1c6ed5fff libFontParser.dylib arm64 <19d1a227c412376fad44adc4e19d84c9> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
0x1c6ed6000 - 0x1c6ed6fff FontServices arm64 <3e343a1380103038a8180ad5675556da> /System/Library/PrivateFrameworks/FontServices.framework/FontServices
0x1c6ed7000 - 0x1c7038fff CoreText arm64 /System/Library/Frameworks/CoreText.framework/CoreText
0x1c7039000 - 0x1c7047fff IntlPreferences arm64 <0b9873bbfbe236318eb428f769e6b86e> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences
0x1c7048000 - 0x1c7051fff RTCReporting arm64 <1cdd556cb41c37988a1b82c5b440f8c9> /System/Library/PrivateFrameworks/RTCReporting.framework/RTCReporting
0x1c7052000 - 0x1c70f5fff CoreBrightness arm64 /System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness
0x1c70f6000 - 0x1c70fffff libAudioStatistics.dylib arm64 <083bcf5cf5c0341da5121eafa10aa695> /usr/lib/libAudioStatistics.dylib
0x1c7100000 - 0x1c769cfff AudioToolbox arm64 <2530d3512c373dd2b3cc2f3c293effe4> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
0x1c769d000 - 0x1c78d4fff QuartzCore arm64 <155936d95d61320594cbbd20b375bd43> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
0x1c78d5000 - 0x1c78dffff MediaAccessibility arm64 <8c573a0fbcc63fb4a160b3b035a3380a> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
0x1c78e0000 - 0x1c79d2fff libiconv.2.dylib arm64 /usr/lib/libiconv.2.dylib
0x1c79d3000 - 0x1c79eefff NetworkStatistics arm64 /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics
0x1c79ef000 - 0x1c7a0dfff MPSCore arm64 <0032b39c51c73273890d3d548b237019> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/MPSCore
0x1c7a0e000 - 0x1c7a81fff MPSImage arm64 <263632528a593edb88071a70ac6d1af6> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/MPSImage
0x1c7a82000 - 0x1c7aa6fff MPSMatrix arm64 <9a8fdb4ab8e5353fb111d7c86ed04ee8> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/MPSMatrix
0x1c7aa7000 - 0x1c7ab5fff CoreAUC arm64 <809718eb88da3cd8958f64b6143a84c2> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC
0x1c7ab6000 - 0x1c813ffff MediaToolbox arm64 <0a11c758938130f89ea9bb9655dbaa51> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
0x1c8140000 - 0x1c82aafff MPSNeuralNetwork arm64 <908d6815c0ce353384fa0b6605be25a1> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/MPSNeuralNetwork
0x1c82ab000 - 0x1c82abfff MetalPerformanceShaders arm64 <01c29dfc703f3dbcb7026885286589c3> /System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders
0x1c82ac000 - 0x1c86befff FaceCore arm64 /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
0x1c86bf000 - 0x1c86ccfff GraphVisualizer arm64 /System/Library/PrivateFrameworks/GraphVisualizer.framework/GraphVisualizer
0x1c86cd000 - 0x1c88f1fff libFosl_dynamic.dylib arm64 <6c6ad99a13273633a0eb74a98de50a55> /usr/lib/libFosl_dynamic.dylib
0x1c88f2000 - 0x1c8b86fff CoreImage arm64 <28188d7e412639ec8c46144332491f78> /System/Library/Frameworks/CoreImage.framework/CoreImage
0x1c8b87000 - 0x1c8da9fff CoreMotion arm64 <60bc80f235f83c96ad6d399bbdb34467> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
0x1c8daa000 - 0x1c8dd8fff CoreBluetooth arm64 <56cbdee6f025337fbcc3c56af8c10347> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
0x1c8dd9000 - 0x1c8dfafff PlugInKit arm64 <529cd0af454735eda8fd460d2d2d686b> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
0x1c8dfb000 - 0x1c9087fff Celestial arm64 <1bc1f3a08bee3deebf2c309f752493b9> /System/Library/PrivateFrameworks/Celestial.framework/Celestial
0x1c9088000 - 0x1c9109fff Quagga arm64 <952b927cc69332709e4c9fc291286be7> /System/Library/PrivateFrameworks/Quagga.framework/Quagga
0x1c910a000 - 0x1c9200fff AVFAudio arm64 <01a661665a2630768dc556efbc3128bf> /System/Library/Frameworks/AVFoundation.framework/Frameworks/AVFAudio.framework/AVFAudio
0x1c9201000 - 0x1c93f9fff AVFoundation arm64 <24b8e1e1e1c73c1787dbd0a0e99f17fd> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
0x1c93fa000 - 0x1c9417fff CacheDelete arm64 <9efd20c7ced8380aba97758366267190> /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete
0x1c9418000 - 0x1c9451fff StreamingZip arm64 <25c7d7baaed23fb0add9dc4f4e30094e> /System/Library/PrivateFrameworks/StreamingZip.framework/StreamingZip
0x1c9452000 - 0x1c9464fff CoreEmoji arm64 <744d2eef17453bed96af9fd67b57b415> /System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji
0x1c9465000 - 0x1c94b4fff CoreLocationProtobuf arm64 /System/Library/PrivateFrameworks/CoreLocationProtobuf.framework/CoreLocationProtobuf
0x1c94b5000 - 0x1c94bcfff SymptomDiagnosticReporter arm64 <1d74fb60f4373c9a8ecc317c5cd0ae1c> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/SymptomDiagnosticReporter
0x1c94bd000 - 0x1c9e9dfff GeoServices arm64 /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
0x1c9e9e000 - 0x1c9eb8fff MobileAsset arm64 <2f10fa9cdc053b29ba291f89d0bfa2b9> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
0x1c9eb9000 - 0x1c9ef4fff Lexicon arm64 <89ae23c8a7dc30eb8f35826759fa333b> /System/Library/PrivateFrameworks/Lexicon.framework/Lexicon
0x1c9ef5000 - 0x1c9f06fff libcmph.dylib arm64 /usr/lib/libcmph.dylib
0x1c9f07000 - 0x1ca016fff LanguageModeling arm64 <30d48d47c95d3f63886c11651fde728f> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
0x1ca02e000 - 0x1ca0c8fff CoreLocation arm64 <2844717a83863e4795cee1d3e160bd01> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
0x1ca0c9000 - 0x1ca0c9fff PhoneNumbers arm64 /System/Library/PrivateFrameworks/PhoneNumbers.framework/PhoneNumbers
0x1ca0ca000 - 0x1ca0d4fff libChineseTokenizer.dylib arm64 <2a7a9a2bcf6e3b8c9dff298ec88b1328> /usr/lib/libChineseTokenizer.dylib
0x1ca0d5000 - 0x1ca185fff libmecab_em.dylib arm64 /usr/lib/libmecab_em.dylib
0x1ca186000 - 0x1ca187fff libThaiTokenizer.dylib arm64 <774f98730d9f3fb29cc53f10572688bb> /usr/lib/libThaiTokenizer.dylib
0x1ca188000 - 0x1ca18cfff libgermantok.dylib arm64 <8d86536290cc3b81a4a0b88b49f2a6be> /usr/lib/libgermantok.dylib
0x1ca18d000 - 0x1ca1f0fff CoreNLP arm64 <6015b52eb60c3beab09b935bbdb916ea> /System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP
0x1ca1fd000 - 0x1ca3c1fff MobileSpotlightIndex arm64 <9c4cbe64973d34d9a71d128a2d5efd1d> /System/Library/PrivateFrameworks/MobileSpotlightIndex.framework/MobileSpotlightIndex
0x1ca424000 - 0x1cb0d0fff JavaScriptCore arm64 <7f797346c56b31348709de5dd36360dc> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
0x1cb0d1000 - 0x1cb0d6fff libheimdal-asn1.dylib arm64 /usr/lib/libheimdal-asn1.dylib
0x1cb0d7000 - 0x1cb151fff libate.dylib arm64 <1ac46e1bbf9d34e58d93ccaf5b2f6ccc> /usr/lib/libate.dylib
0x1cb152000 - 0x1cb1f9fff TextureIO arm64 <7cc02f08a29f34cdac175de4dae21fbc> /System/Library/PrivateFrameworks/TextureIO.framework/TextureIO
0x1cb1fa000 - 0x1cb2bdfff CoreUI arm64 <179645d9c1393a53b8c559c944f4c2ab> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
0x1cb2be000 - 0x1cb2cbfff MobileIcons arm64 /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
0x1cb2cc000 - 0x1cb2dafff AppleFSCompression arm64 <0091e972717339dbb15fbcd499ef930e> /System/Library/PrivateFrameworks/AppleFSCompression.framework/AppleFSCompression
0x1cb2db000 - 0x1cb343fff TextInput arm64 <24d138e06df03789bebe3d42de861b9a> /System/Library/PrivateFrameworks/TextInput.framework/TextInput
0x1cb36d000 - 0x1cb3a0fff DataDetectorsCore arm64 /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore
0x1cb3a1000 - 0x1cb432fff FileProvider arm64 <9b1dd8d65cee3d08a70f66029726591a> /System/Library/Frameworks/FileProvider.framework/FileProvider
0x1cb433000 - 0x1cb528fff NLP arm64 <26ef4858cee033e4b8a101befc2f5237> /System/Library/PrivateFrameworks/NLP.framework/NLP
0x1cb529000 - 0x1cb5fefff ProofReader arm64 /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
0x1cb5ff000 - 0x1cb614fff libAccessibility.dylib arm64 /usr/lib/libAccessibility.dylib
0x1cb615000 - 0x1cbb03fff libwebrtc.dylib arm64 /System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libwebrtc.dylib
0x1cbb04000 - 0x1cbb68fff ContactsFoundation arm64 /System/Library/PrivateFrameworks/ContactsFoundation.framework/ContactsFoundation
0x1cbb69000 - 0x1cd51ffff WebCore arm64 /System/Library/PrivateFrameworks/WebCore.framework/WebCore
0x1cd520000 - 0x1cd6b9fff WebKitLegacy arm64 <19a3b354295e3364ae243d1e56a5e323> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
0x1cd6ba000 - 0x1cd6e9fff DataAccessExpress arm64 <5df720c36e69332ab655bad1d9a1c208> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
0x1cd6ea000 - 0x1cd783fff AddressBookLegacy arm64 <456187a18fed3858a14bdd2815e46826> /System/Library/PrivateFrameworks/AddressBookLegacy.framework/AddressBookLegacy
0x1cd784000 - 0x1cd7dbfff ProtectedCloudStorage arm64 <138c872dbc513d81b2f2dd57d60b2d73> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage
0x1cd7dc000 - 0x1cd80dfff UserNotifications arm64 /System/Library/Frameworks/UserNotifications.framework/UserNotifications
0x1cd80e000 - 0x1cd819fff AppleIDAuthSupport arm64 /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport
0x1cd81a000 - 0x1cd86ffff AuthKit arm64 /System/Library/PrivateFrameworks/AuthKit.framework/AuthKit
0x1cd8ae000 - 0x1cd8aefff UIKit arm64 /System/Library/Frameworks/UIKit.framework/UIKit
0x1cd8af000 - 0x1cd8c2fff DocumentManagerCore arm64 <1544ac44f1fe36c1866fc7eb6a565ba8> /System/Library/PrivateFrameworks/DocumentManagerCore.framework/DocumentManagerCore
0x1cd8c3000 - 0x1cd8d1fff HangTracer arm64 <76702b791c6c3989bcb0ba485c2cfb4d> /System/Library/PrivateFrameworks/HangTracer.framework/HangTracer
0x1cd8d2000 - 0x1cd920fff PhysicsKit arm64 <8a7fa50db32c328d851ecd981b2c5b00> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
0x1cd921000 - 0x1cd925fff StudyLog arm64 <59820891019136928c08b84cce7a61fb> /System/Library/PrivateFrameworks/StudyLog.framework/StudyLog
0x1cd926000 - 0x1cda11fff UIFoundation arm64 <3f0ae6dbf51d3c8b88139f49459083a7> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
0x1cda12000 - 0x1cdb32fff CloudKit arm64 <1c18cf5ba00334ccb769f10930c5083f> /System/Library/Frameworks/CloudKit.framework/CloudKit
0x1cdb33000 - 0x1cdb3afff IntentsFoundation arm64 /System/Library/PrivateFrameworks/IntentsFoundation.framework/IntentsFoundation
0x1cdb3b000 - 0x1cde21fff Intents arm64 <11b121ab6445310d84885ac7fa9c1e48> /System/Library/Frameworks/Intents.framework/Intents
0x1cde22000 - 0x1cde3afff libresolv.9.dylib arm64 <063cb098ae1b38b6bd21edc72c82bb59> /usr/lib/libresolv.9.dylib
0x1cde3b000 - 0x1cde3dfff CoreDuetDebugLogging arm64 <996c491eda1b33d28b37a330ae37e4f2> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging
0x1cde3e000 - 0x1cde6ffff libtidy.A.dylib arm64 /usr/lib/libtidy.A.dylib
0x1cde70000 - 0x1ce02afff CoreDuet arm64 <3dd077372d263748872e9189a07d32e7> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet
0x1ce02b000 - 0x1ce04bfff CoreDuetContext arm64 <771768cbeeab38228d5721ea22bb3ae7> /System/Library/PrivateFrameworks/CoreDuetContext.framework/CoreDuetContext
0x1ce04c000 - 0x1ce05dfff CoreDuetDaemonProtocol arm64 <89e376a978693b11b39c7850242996b0> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol
0x1ce05e000 - 0x1ce0c4fff IMFoundation arm64 /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
0x1ce0c5000 - 0x1ce0f6fff vCard arm64 <52308e3dc3f23b52b5a6aa2cebd14e51> /System/Library/PrivateFrameworks/vCard.framework/vCard
0x1ce0f7000 - 0x1ce208fff Contacts arm64 <3eb5fcb06423321294bfcc9997a6625d> /System/Library/Frameworks/Contacts.framework/Contacts
0x1ce209000 - 0x1ce20afff DiagnosticLogCollection arm64 /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/DiagnosticLogCollection
0x1ce20b000 - 0x1ce20cfff Marco arm64 <02b58a80366d3de980ec6970c2a7d468> /System/Library/PrivateFrameworks/Marco.framework/Marco
0x1ce20d000 - 0x1ce214fff MessageProtection arm64 <808294fe384538e89e78a984f6407132> /System/Library/PrivateFrameworks/MessageProtection.framework/MessageProtection
0x1ce215000 - 0x1ce4fefff StoreServices arm64 <87d19003f5f13af0be02ab0606e4d6ef> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
0x1ce4ff000 - 0x1ce515fff Engram arm64 <70ddaaddaef93363b6c2c4aa9df885c0> /System/Library/PrivateFrameworks/Engram.framework/Engram
0x1ce516000 - 0x1ce622fff IDSFoundation arm64 /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
0x1ce623000 - 0x1ce62dfff CaptiveNetwork arm64 <21bab59440c2375f8303dc6861103ec8> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
0x1ce62e000 - 0x1ce65dfff EAP8021X arm64 <4768fe1e879337fb808ffd493c1c63ba> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
0x1ce65e000 - 0x1ce69bfff MobileWiFi arm64 /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
0x1ce69c000 - 0x1ce69efff OAuth arm64 <61c8495aea81311abe3ebcbae2c2d447> /System/Library/PrivateFrameworks/OAuth.framework/OAuth
0x1ce69f000 - 0x1ce6a1fff CommonAuth arm64 /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth
0x1ce6a2000 - 0x1ce711fff Heimdal arm64 <189224720339354eba9a64343c490e0b> /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal
0x1ce712000 - 0x1ce73bfff GSS arm64 /System/Library/Frameworks/GSS.framework/GSS
0x1ce73c000 - 0x1ce753fff ApplePushService arm64 /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
0x1ce754000 - 0x1ce7e3fff AccountsDaemon arm64 /System/Library/PrivateFrameworks/AccountsDaemon.framework/AccountsDaemon
0x1ce7e4000 - 0x1ce806fff AppleIDSSOAuthentication arm64 /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication
0x1ce807000 - 0x1ce888fff AppleAccount arm64 <15caa7272f973e3f98fec5b04c3b4a0a> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
0x1ce889000 - 0x1ce9fafff CoreUtils arm64 <95d8dea921d33ca3b063042ad325d071> /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
0x1ce9fb000 - 0x1ceaf4fff IDS arm64 /System/Library/PrivateFrameworks/IDS.framework/IDS
0x1cecec000 - 0x1ced06fff UserManagement arm64 /System/Library/PrivateFrameworks/UserManagement.framework/UserManagement
0x1ced18000 - 0x1ced48fff Bom arm64 /System/Library/PrivateFrameworks/Bom.framework/Bom
0x1cee08000 - 0x1cee56fff ChunkingLibrary arm64 /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary
0x1cee57000 - 0x1cee65fff libnetworkextension.dylib arm64 <28947f8ffc5c36cda71103a82f5fe519> /usr/lib/libnetworkextension.dylib
0x1cfbe3000 - 0x1cfd80fff NetworkExtension arm64 <41b6a777188636c98a37e08f5b656470> /System/Library/Frameworks/NetworkExtension.framework/NetworkExtension
0x1d03a2000 - 0x1d03bffff AssetCacheServices arm64 <518589ad431e3e7d8a58b24f553ca598> /System/Library/PrivateFrameworks/AssetCacheServices.framework/AssetCacheServices
0x1d03c0000 - 0x1d0471fff NetworkServiceProxy arm64 /System/Library/PrivateFrameworks/NetworkServiceProxy.framework/NetworkServiceProxy
0x1d0472000 - 0x1d0546fff MMCS arm64 <0dce6aa56a593a01b4d94d13e035470e> /System/Library/PrivateFrameworks/MMCS.framework/MMCS
0x1d065d000 - 0x1d068bfff PhotosFormats arm64 <44325b1c7a883b0cb8bd0c6155ed829d> /System/Library/PrivateFrameworks/PhotosFormats.framework/PhotosFormats
0x1d077f000 - 0x1d08dbfff CloudPhotoLibrary arm64 /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/CloudPhotoLibrary
0x1d09c1000 - 0x1d09f3fff AssetsLibraryServices arm64 <8d80bd67f74739f6be18da69f7e7651e> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices
0x1d0a29000 - 0x1d0a51fff DCIMServices arm64 /System/Library/PrivateFrameworks/DCIMServices.framework/DCIMServices
0x1d0a52000 - 0x1d0b70fff CoreMediaStream arm64 <98b12d27f32333fdbdc05db7d9d7fc55> /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream
0x1d0b71000 - 0x1d0b78fff XPCKit arm64 <163a444a2c033a4f9398f0ffa289e226> /System/Library/PrivateFrameworks/XPCKit.framework/XPCKit
0x1d0c59000 - 0x1d0c72fff CloudPhotoServices arm64 <84417150348c3a898cbba2a1bef669dc> /System/Library/PrivateFrameworks/CloudPhotoServices.framework/CloudPhotoServices
0x1d0c7f000 - 0x1d0c9bfff MediaStream arm64 <4c04330a073630eeb64c4f409a3b233a> /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream
0x1d0c9c000 - 0x1d119bfff PhotoLibraryServices arm64 /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices
0x1d119c000 - 0x1d11b7fff PrototypeTools arm64 <8cfb821e625d351aaf01907af0af3a59> /System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools
0x1d11b8000 - 0x1d1237fff CoreSymbolication arm64 /System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication
0x1d1598000 - 0x1d15a0fff CoreTime arm64 /System/Library/PrivateFrameworks/CoreTime.framework/CoreTime
0x1d15a1000 - 0x1d15f1fff CoreAppleCVA arm64 <16e32ab0c7ac3a95bf5e8bb83124d2f1> /System/Library/PrivateFrameworks/CoreAppleCVA.framework/CoreAppleCVA
0x1d1631000 - 0x1d17d3fff AppleCVA arm64 <23ac57ae96cf372c888981d23be00962> /System/Library/PrivateFrameworks/AppleCVA.framework/AppleCVA
0x1d17d4000 - 0x1d188bfff Montreal arm64 <35ca50ab6fa534038e24e4713a515343> /System/Library/PrivateFrameworks/Montreal.framework/Montreal
0x1d188c000 - 0x1d1badfff Espresso arm64 <8db057c1541539d9bd2abf8e1f690124> /System/Library/PrivateFrameworks/Espresso.framework/Espresso
0x1d1bae000 - 0x1d1bb4fff MobileSystemServices arm64 <76021934ee51380cb4c9a70051c3180a> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices
0x1d1bb5000 - 0x1d1da1fff Photos arm64 <058ae9c970623f0faf8baeadfdcf0462> /System/Library/Frameworks/Photos.framework/Photos
0x1d1da2000 - 0x1d1fc5fff CoreML arm64 /System/Library/Frameworks/CoreML.framework/CoreML
0x1d219e000 - 0x1d21cafff Futhark arm64 /System/Library/PrivateFrameworks/Futhark.framework/Futhark
0x1d21cb000 - 0x1d223afff NanoRegistry arm64 <424a08d47448328aab4336afb54964db> /System/Library/PrivateFrameworks/NanoRegistry.framework/NanoRegistry
0x1d253e000 - 0x1d27cffff Vision arm64 <0feff44844a43631871df6ce1b82ea2a> /System/Library/Frameworks/Vision.framework/Vision
0x1d2d6e000 - 0x1d2d73fff ConstantClasses arm64 <3fc92df26b40320694626f36a6ca92f9> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
0x1d4623000 - 0x1d4646fff MobileInstallation arm64 /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
0x1d4891000 - 0x1d48a2fff AssetsLibrary arm64 <609d52e757623e568396abea010cba79> /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary
0x1d4c9b000 - 0x1d4cb2fff CoreFollowUp arm64 /System/Library/PrivateFrameworks/CoreFollowUp.framework/CoreFollowUp
0x1d5952000 - 0x1d595ffff SetupAssistantSupport arm64 /System/Library/PrivateFrameworks/SetupAssistantSupport.framework/SetupAssistantSupport
0x1d5960000 - 0x1d5989fff SetupAssistant arm64 /System/Library/PrivateFrameworks/SetupAssistant.framework/SetupAssistant
0x1d59d6000 - 0x1d59dffff MobileStorage arm64 <263079d674403cd6a94f3cd4f683cc0e> /System/Library/PrivateFrameworks/MobileStorage.framework/MobileStorage
0x1d5a1f000 - 0x1d5a7bfff ImageCapture arm64 <3510b687cbf43c3a81623571627b0eec> /System/Library/PrivateFrameworks/ImageCapture.framework/ImageCapture
0x1d6631000 - 0x1d6636fff LinguisticData arm64 <9e8ddb01e0743fcc96ce438dec89b641> /System/Library/PrivateFrameworks/LinguisticData.framework/LinguisticData
0x1d7d1a000 - 0x1d7d2cfff MobileDeviceLink arm64 <4ec701e6cc9d3e27bd508b406dae64bf> /System/Library/PrivateFrameworks/MobileDeviceLink.framework/MobileDeviceLink
0x1d7e09000 - 0x1d7e4ffff MobileBackup arm64 <5983d81ae309370e9c857948955c1fe1> /System/Library/PrivateFrameworks/MobileBackup.framework/MobileBackup
0x1da5cf000 - 0x1da620fff LoggingSupport arm64 <8297d6d7f1683b4d885f49d51c6d2c29> /System/Library/PrivateFrameworks/LoggingSupport.framework/LoggingSupport
0x1dd290000 - 0x1dd295fff kperf arm64 <3af5ffa614bb3b08b1706d38fccdedda> /System/Library/PrivateFrameworks/kperf.framework/kperf
0x1dd4e1000 - 0x1dd501fff CellularPlanManager arm64 <379a070a7b6837598e45434c2ba92936> /System/Library/PrivateFrameworks/CellularPlanManager.framework/CellularPlanManager
0x1dd6bf000 - 0x1dd6c7fff kperfdata arm64 /System/Library/PrivateFrameworks/kperfdata.framework/kperfdata
0x1dd70a000 - 0x1dd711fff libdscsym.dylib arm64 <526d01756ffd37e38ac83aba853659cc> /usr/lib/libdscsym.dylib
0x1ddab4000 - 0x1ddaebfff ktrace arm64 <9ca1ca2b16ca39ef9dfc7e0d6e9a18fe> /System/Library/PrivateFrameworks/ktrace.framework/ktrace
0x1e00dd000 - 0x1e0100fff DeviceIdentity arm64 <2ae4888a4eb230b7b5fb6ba07cc727e6> /System/Library/PrivateFrameworks/DeviceIdentity.framework/DeviceIdentity
0x1e2071000 - 0x1e20dafff Rapport arm64 <81f4bc5478203943927abbf2a91173dd> /System/Library/PrivateFrameworks/Rapport.framework/Rapport
0x1e2116000 - 0x1e2147fff SignpostSupport arm64 <87903b8cf3fe30ff93118fa99ff6e80d> /System/Library/PrivateFrameworks/SignpostSupport.framework/SignpostSupport
0x1e3011000 - 0x1e3018fff libMatch.1.dylib arm64 /usr/lib/libMatch.1.dylib
0x1e3061000 - 0x1e3076fff libtailspin.dylib arm64 <3f16974af9133758a370fee90d3fe83f> /usr/lib/libtailspin.dylib
0x1e336c000 - 0x1e3631fff RawCamera arm64 <2e2fa7a7314b32dfb8107e23a7aa7973> /System/Library/CoreServices/RawCamera.bundle/RawCamera
0x1e3739000 - 0x1e374dfff libCGInterfaces.dylib arm64 <78d2be0f15703d3e9a44e8108d4b4bc0> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Libraries/libCGInterfaces.dylib
0x1e5f09000 - 0x1e5f30fff CoreServicesInternal arm64 /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal
0x1e6591000 - 0x1e65a3fff libGSFontCache.dylib arm64 /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib
0x1e65a4000 - 0x1e65d4fff libTrueTypeScaler.dylib arm64 <6c4ca896d42b3d809e01eda1de7653fe> /System/Library/PrivateFrameworks/FontServices.framework/libTrueTypeScaler.dylib
0x1e8005000 - 0x1e8009fff InternationalSupport arm64 /System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport
0x1e9793000 - 0x1e97a0fff SignpostCollection arm64 <38bd6c8735a630edacab7a634d0c9265> /System/Library/PrivateFrameworks/SignpostCollection.framework/SignpostCollection
0x1ea25d000 - 0x1ea260fff XCTTargetBootstrap arm64 /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/XCTTargetBootstrap
0x1ea29e000 - 0x1ea2affff libEDR arm64 <6fe124a810db36f2bb8e8651d10fa63e> /System/Library/PrivateFrameworks/libEDR.framework/libEDR
0x1eadd0000 - 0x1eadd0fff libcharset.1.dylib arm64 <33e0b4e4ef0138929340283666f07a6e> /usr/lib/libcharset.1.dylib
0x1eb840000 - 0x1eb841fff libsandbox.1.dylib arm64 <80275fcd4b3e3156a0cecfc70f015274> /usr/lib/libsandbox.1.dylib
0x1eb880000 - 0x1eb881fff liblog_network.dylib arm64 <52cc514f76af3d5d8581458a1b192af8> /usr/lib/log/liblog_network.dylib
0x1ebaeb000 - 0x1ebc27fff CoreServices arm64 <6461454eaa203c68a5f2bd8328deee2a> /System/Library/Frameworks/CoreServices.framework/CoreServices
0x1ebc51000 - 0x1ebc6afff MPSRayIntersector arm64 <477fb557d1dc346d919a3d7859a590f8> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/MPSRayIntersector
0x1ebc97000 - 0x1ebdbdfff Network arm64 <4b150c2b41f737bcb41d14ecc9c5337e> /System/Library/Frameworks/Network.framework/Network
0x1ebdcd000 - 0x1ebddbfff ANEServices arm64 <17207bfe6e1e3e3ba328f2d0663bdf91> /System/Library/PrivateFrameworks/ANEServices.framework/ANEServices
0x1ebde0000 - 0x1ebde4fff ASEProcessing arm64 /System/Library/PrivateFrameworks/ASEProcessing.framework/ASEProcessing
0x1ebde5000 - 0x1ebdf0fff AXCoreUtilities arm64 <387a20905a7037be884aed0e05fe64c5> /System/Library/PrivateFrameworks/AXCoreUtilities.framework/AXCoreUtilities
0x1ec05b000 - 0x1ec19dfff AppleMediaServices arm64 /System/Library/PrivateFrameworks/AppleMediaServices.framework/AppleMediaServices
0x1ec19e000 - 0x1ec1adfff AppleNeuralEngine arm64 /System/Library/PrivateFrameworks/AppleNeuralEngine.framework/AppleNeuralEngine
0x1ec326000 - 0x1ec35bfff C2 arm64 <70a3cee9fb603415ac5fcb6be4bb47f4> /System/Library/PrivateFrameworks/C2.framework/C2
0x1ec992000 - 0x1ec9e5fff DocumentManager arm64 /System/Library/PrivateFrameworks/DocumentManager.framework/DocumentManager
0x1ecb1b000 - 0x1ecb1ffff IdleTimerServices arm64 <6df10e71ba943b9795d783c39a0baa6e> /System/Library/PrivateFrameworks/IdleTimerServices.framework/IdleTimerServices
0x1ecc01000 - 0x1ecc29fff MetadataUtilities arm64 /System/Library/PrivateFrameworks/MetadataUtilities.framework/MetadataUtilities
0x1edce3000 - 0x1edd2ffff OTSVG arm64 /System/Library/PrivateFrameworks/OTSVG.framework/OTSVG
0x1ede23000 - 0x1ede7dfff PhotoFoundation arm64 <26ec9d6e0a9837b8b545153fbffb4406> /System/Library/PrivateFrameworks/PhotoFoundation.framework/PhotoFoundation
0x1edecd000 - 0x1edf0efff PhotosImagingFoundation arm64 /System/Library/PrivateFrameworks/PhotosImagingFoundation.framework/PhotosImagingFoundation
0x1edf70000 - 0x1edfbdfff ROCKit arm64 /System/Library/PrivateFrameworks/ROCKit.framework/ROCKit
0x1ee210000 - 0x1ee2a4fff SampleAnalysis arm64 /System/Library/PrivateFrameworks/SampleAnalysis.framework/SampleAnalysis
0x1ee38d000 - 0x1ee38dfff SignpostNotification arm64 /System/Library/PrivateFrameworks/SignpostNotification.framework/SignpostNotification
0x1ee44e000 - 0x1ee455fff StatsKit arm64 /System/Library/PrivateFrameworks/StatsKit.framework/StatsKit
0x1eefd5000 - 0x1f00a6fff UIKitCore arm64 /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
0x1f00a7000 - 0x1f00b1fff UIKitServices arm64 <2b8370011d1f3b898fe0f69cf27ffdd9> /System/Library/PrivateFrameworks/UIKitServices.framework/UIKitServices
0x1f00b2000 - 0x1f00b8fff URLFormatting arm64 <5115de3a9b0e3ec891f2a89b6ba323e6> /System/Library/PrivateFrameworks/URLFormatting.framework/URLFormatting

EOF

@russelRajitha
Copy link

is there any solution for this issue? facing same issue in review process in appstore. with real devices and emulators everything working perfectly. but when it put as new production release they are rejecting build and crash reports same as this report.

@MrKriegler
Copy link

Think this issue should be re-opened as there seems to be more people getting this issue, including myself?

@keremaydin52
Copy link

keremaydin52 commented Dec 4, 2019

I have the same issue when navigating a different scene in my app but I don't know what causes the problem.

Actually there is no problem when testing on simulator or getting build to my phone from Xcode. However when I get ipa file and upload to Diawi or publishing via TestFlight there is this problem.

I changed codes but I couldn't solve the problem yet.

Is there any solution?

@MrKriegler
Copy link

MrKriegler commented Dec 5, 2019

@keremaydin52 this solution worked for me

software-mansion/react-native-gesture-handler#320 (comment)

@keremaydin52
Copy link

keremaydin52 commented Dec 5, 2019

@MrKriegler Thanks mate. I have added Firebase Crashlytics today and found that the problem is due to react-native-gesture-handler. I was just looking for the solution and saw your comment.

@facebook facebook locked as resolved and limited conversation to collaborators Mar 19, 2020
@react-native-bot react-native-bot added the Resolution: Locked This issue was locked by the bot. label Mar 19, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Bug Platform: iOS iOS applications. Resolution: Locked This issue was locked by the bot.
Projects
None yet
Development

No branches or pull requests