100mslive / 100ms-react-native

React Native Live Streaming, Video Conferencing SDK & Sample App
https://www.100ms.live/
MIT License
82 stars 31 forks source link

🐛 HMSSDK.build() method crashes iOS on start with new architecture enabled and Expo SDK 51 #1428

Closed RajeshPandey057 closed 2 months ago

RajeshPandey057 commented 2 months ago

Description

Following expo quick start example, I added 100mslive/react-native-hms and other related packages to project. Configured and acquired permissions. Now using useEffect hook to check up if permissions are granted and calling HMSSDK.build(). If this line is commented, app is running both on iPhone 12 and iOS 16 simulator.

If I uncomment that line, app builds and launches, but crashes right after splash screen without any error in expo console. MacOs is detecting crash and generating following log,

Expo SDK: 51 New architecture enabled.

100ms React Native Version

1.10.9

React Native Version

0.74.5

Steps to reproduce

  1. Scaffold a new expo app with expo-router and expo SDK 51

  2. Create a button to go to /hms on home page.

  3. Include following in the _layout.tsx inside hms folder

        import {
        HMSAudioTrackSettings,
        HMSLogAlarmManager,
        HMSLogLevel,
        HMSLogSettings,
        HMSSDK,
        HMSTrackSettings,
        HMSTrackSettingsInitState,
        HMSVideoTrackSettings,
      } from "@100mslive/react-native-hms";
      import {
        CameraType,
        useCameraPermissions,
        useMicrophonePermissions,
      } from "expo-camera";
      import { Stack } from "expo-router";
      import { useEffect, useState } from "react";
      import { Text } from "react-native";
      import { SafeAreaView } from "react-native-safe-area-context";
      import { Button } from "~/components/ui/button";
    
      export default function CallLayout() {
        const [facing, setFacing] = useState<CameraType>("back");
        const [mic, requestMic] = useMicrophonePermissions();
        const [cam, requestCam] = useCameraPermissions();
        useEffect(() => {
          const getTrackSettings = () => {
            const audioSettings = new HMSAudioTrackSettings({
              initialState: HMSTrackSettingsInitState.UNMUTED,
            });
            const videoSettings = new HMSVideoTrackSettings({
              initialState: HMSTrackSettingsInitState.UNMUTED,
            });
    
            return new HMSTrackSettings({
              video: videoSettings,
              audio: audioSettings,
            });
          };
          if (cam?.granted && mic?.granted) {
            HMSSDK.build({
              logSettings: new HMSLogSettings({
                level: HMSLogLevel.VERBOSE,
                isLogStorageEnabled: true,
                maxDirSizeInBytes: HMSLogAlarmManager.DEFAULT_DIR_SIZE,
              }),
              trackSettings: getTrackSettings(),
            }).catch((e: unknown) => {
              console.error(e);
            });
          }
        }, [cam?.granted, mic?.granted]);
        if (!mic || !cam) {
          return (
            <SafeAreaView>
              <Text>Loading permissions</Text>
            </SafeAreaView>
          );
        }
        if (!mic.granted) {
          return (
            <SafeAreaView>
              <Text>Microphone permissions required</Text>
              {mic.canAskAgain ? (
                <Button onPress={requestMic}>
                  <Text>Allow using microphone </Text>
                </Button>
              ) : (
                <Text>Go to app setting to allow</Text>
              )}
            </SafeAreaView>
          );
        }
        if (!cam.granted) {
          return (
            <SafeAreaView>
              <Text>Camera permissions required</Text>
              {mic.canAskAgain ? (
                <Button onPress={requestCam}>
                  <Text>Allow using Camera </Text>
                </Button>
              ) : (
                <Text>Go to app setting to allow</Text>
              )}
            </SafeAreaView>
          );
        }
    
        return (
          <Stack>
            <Stack.Screen name="index" options={{ headerShown: false }} />
          </Stack>
        );
      }
  4. Run app on ios device simulator using npx expo prebuild --clean && npx expo run:ios

  5. App works if block starting from HMSSDK.build( is commented and run again.

Expected results

App runs with 100ms integration and ability to join video calls.

Entire logs with CLI output Logs

Logs Build log attached in next commnent ```console ------------------------------------- Translated Report (Full Report Below) ------------------------------------- Incident Identifier: 39DCC671-22E5-4ED3-BEF9-D79F531D0F46 CrashReporter Key: 87633338-EE75-9C54-B9A3-099783D6692B Hardware Model: MacBookPro18,3 Process: PatientDev [42778] Path: /Users/USER/Library/Developer/CoreSimulator/Devices/F2DAB3E6-B36F-4938-A648-C9D838228E39/data/Containers/Bundle/Application/DE6CAFFC-853D-4D39-A28E-095E50C3AC48/PatientDev.app/PatientDev Identifier: com.hellowellness.patient.dev Version: 1.0.0 (1) Code Type: ARM-64 (Native) Role: Foreground Parent Process: launchd_sim [36557] Coalition: com.apple.CoreSimulator.SimDevice.F2DAB3E6-B36F-4938-A648-C9D838228E39 [275241] Responsible Process: SimulatorTrampoline [12303] Date/Time: 2024-08-11 10:30:56.7986 +0530 Launch Time: 2024-08-11 10:30:45.9069 +0530 OS Version: macOS 14.5 (23F79) Release Type: User Report Version: 104 Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Subtype: KERN_INVALID_ADDRESS at 0x0000000000000000 Exception Codes: 0x0000000000000001, 0x0000000000000000 VM Region Info: 0 is not in any region. Bytes before following region: 4342398976 REGION TYPE START - END [ VSIZE] PRT/MAX SHRMOD REGION DETAIL UNUSED SPACE AT START ---> __TEXT 102d3c000-1055d8000 [ 40.6M] r-x/r-x SM=COW /Users/USER/Library/Developer/CoreSimulator/Devices/F2DAB3E6-B36F-4938-A648-C9D838228E39/data/Containers/Bundle/Application/DE6CAFFC-853D-4D39-A28E-095E50C3AC48/PatientDev.app/PatientDev Termination Reason: SIGNAL 11 Segmentation fault: 11 Terminating Process: exc handler [42778] Triggered by Thread: 12 Kernel Triage: VM - (arg = 0x3) mach_vm_allocate_kernel failed within call to vm_map_enter VM - (arg = 0x3) mach_vm_allocate_kernel failed within call to vm_map_enter VM - (arg = 0x3) mach_vm_allocate_kernel failed within call to vm_map_enter VM - (arg = 0x3) mach_vm_allocate_kernel failed within call to vm_map_enter VM - (arg = 0x3) mach_vm_allocate_kernel failed within call to vm_map_enter Thread 0:: Dispatch queue: com.apple.main-thread 0 libsystem_kernel.dylib 0x10a02d570 mach_msg2_trap + 8 1 libsystem_kernel.dylib 0x10a03eb80 mach_msg2_internal + 76 2 libsystem_kernel.dylib 0x10a035798 mach_msg_overwrite + 532 3 libsystem_kernel.dylib 0x10a02d8e8 mach_msg + 20 4 CoreFoundation 0x18040e6c4 __CFRunLoopServiceMachPort + 156 5 CoreFoundation 0x180408da4 __CFRunLoopRun + 1148 6 CoreFoundation 0x180408514 CFRunLoopRunSpecific + 572 7 GraphicsServices 0x18ef06ae4 GSEventRunModal + 160 8 UIKitCore 0x1853e8040 -[UIApplication _run] + 868 9 UIKitCore 0x1853ebcc8 UIApplicationMain + 124 10 PatientDev 0x102d41060 main + 96 (main.m:7) 11 dyld_sim 0x109fa1544 start_sim + 20 12 dyld 0x10a1420e0 start + 2360 Thread 1: 0 libsystem_pthread.dylib 0x10ae365cc start_wqthread + 0 Thread 2: 0 libsystem_pthread.dylib 0x10ae365cc start_wqthread + 0 Thread 3:: com.apple.uikit.eventfetch-thread 0 libsystem_kernel.dylib 0x10a02d570 mach_msg2_trap + 8 1 libsystem_kernel.dylib 0x10a03eb80 mach_msg2_internal + 76 2 libsystem_kernel.dylib 0x10a035798 mach_msg_overwrite + 532 3 libsystem_kernel.dylib 0x10a02d8e8 mach_msg + 20 4 CoreFoundation 0x18040e6c4 __CFRunLoopServiceMachPort + 156 5 CoreFoundation 0x180408da4 __CFRunLoopRun + 1148 6 CoreFoundation 0x180408514 CFRunLoopRunSpecific + 572 7 Foundation 0x180dea38c -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 208 8 Foundation 0x180dea5b0 -[NSRunLoop(NSRunLoop) runUntilDate:] + 60 9 UIKitCore 0x18548df20 -[UIEventFetcher threadMain] + 404 10 Foundation 0x180e10be4 __NSThread__start__ + 720 11 libsystem_pthread.dylib 0x10ae3b414 _pthread_start + 104 12 libsystem_pthread.dylib 0x10ae365e0 thread_start + 8 Thread 4: 0 libsystem_pthread.dylib 0x10ae365cc start_wqthread + 0 Thread 5: 0 libsystem_pthread.dylib 0x10ae365cc start_wqthread + 0 Thread 6: 0 libsystem_pthread.dylib 0x10ae365cc start_wqthread + 0 Thread 7: 0 libsystem_pthread.dylib 0x10ae365cc start_wqthread + 0 Thread 8:: com.google.firebase.crashlytics.MachExceptionServer 0 libsystem_kernel.dylib 0x10a030d3c write + 8 1 PatientDev 0x103270e10 FIRCLSSDKFileLog + 424 (FIRCLSInternalLogging.c:62) 2 PatientDev 0x103273b48 FIRCLSMachExceptionReply + 332 (FIRCLSMachException.c:265) 3 PatientDev 0x1032735ec FIRCLSMachExceptionServer + 100 (FIRCLSMachException.c:176) 4 libsystem_pthread.dylib 0x10ae3b414 _pthread_start + 104 5 libsystem_pthread.dylib 0x10ae365e0 thread_start + 8 Thread 9:: com.apple.CFNetwork.CustomProtocols 0 libsystem_kernel.dylib 0x10a02d570 mach_msg2_trap + 8 1 libsystem_kernel.dylib 0x10a03eb80 mach_msg2_internal + 76 2 libsystem_kernel.dylib 0x10a035798 mach_msg_overwrite + 532 3 libsystem_kernel.dylib 0x10a02d8e8 mach_msg + 20 4 CoreFoundation 0x18040e6c4 __CFRunLoopServiceMachPort + 156 5 CoreFoundation 0x180408da4 __CFRunLoopRun + 1148 6 CoreFoundation 0x180408514 CFRunLoopRunSpecific + 572 7 CFNetwork 0x184540b58 0x184328000 + 2198360 8 Foundation 0x180e10be4 __NSThread__start__ + 720 9 libsystem_pthread.dylib 0x10ae3b414 _pthread_start + 104 10 libsystem_pthread.dylib 0x10ae365e0 thread_start + 8 Thread 10:: com.facebook.SocketRocket.NetworkThread 0 libsystem_kernel.dylib 0x10a02d570 mach_msg2_trap + 8 1 libsystem_kernel.dylib 0x10a03eb80 mach_msg2_internal + 76 2 libsystem_kernel.dylib 0x10a035798 mach_msg_overwrite + 532 3 libsystem_kernel.dylib 0x10a02d8e8 mach_msg + 20 4 CoreFoundation 0x18040e6c4 __CFRunLoopServiceMachPort + 156 5 CoreFoundation 0x180408da4 __CFRunLoopRun + 1148 6 CoreFoundation 0x180408514 CFRunLoopRunSpecific + 572 7 Foundation 0x180dea38c -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 208 8 PatientDev 0x1040762b8 -[SRRunLoopThread main] + 260 (SRRunLoopThread.m:71) 9 Foundation 0x180e10be4 __NSThread__start__ + 720 10 libsystem_pthread.dylib 0x10ae3b414 _pthread_start + 104 11 libsystem_pthread.dylib 0x10ae365e0 thread_start + 8 Thread 11:: com.apple.NSURLConnectionLoader 0 libsystem_kernel.dylib 0x10a02d570 mach_msg2_trap + 8 1 libsystem_kernel.dylib 0x10a03eb80 mach_msg2_internal + 76 2 libsystem_kernel.dylib 0x10a035798 mach_msg_overwrite + 532 3 libsystem_kernel.dylib 0x10a02d8e8 mach_msg + 20 4 CoreFoundation 0x18040e6c4 __CFRunLoopServiceMachPort + 156 5 CoreFoundation 0x180408da4 __CFRunLoopRun + 1148 6 CoreFoundation 0x180408514 CFRunLoopRunSpecific + 572 7 CFNetwork 0x184540b58 0x184328000 + 2198360 8 Foundation 0x180e10be4 __NSThread__start__ + 720 9 libsystem_pthread.dylib 0x10ae3b414 _pthread_start + 104 10 libsystem_pthread.dylib 0x10ae365e0 thread_start + 8 Thread 12 Crashed:: com.facebook.react.runtime.JavaScript 0 libsystem_platform.dylib 0x109ec4c24 _platform_strlen + 4 1 PatientDev 0x102d44594 std::__1::__constexpr_strlen[abi:ue170006](char const*) + 24 (constexpr_c_functions.h:49) 2 PatientDev 0x102d444a4 std::__1::char_traits::length[abi:ue170006](char const*) + 24 (char_traits.h:222) 3 PatientDev 0x102d44430 std::__1::basic_string, std::__1::allocator>::basic_string[abi:ue170006]<0>(char const*) + 56 (string:940) 4 PatientDev 0x102d43fe8 std::__1::basic_string, std::__1::allocator>::basic_string[abi:ue170006]<0>(char const*) + 36 (string:938) 5 PatientDev 0x103f1af78 facebook::react::(anonymous namespace)::parseExportedMethods(std::__1::basic_string, std::__1::allocator>, objc_class*) + 376 (RCTInteropTurboModule.mm:126) 6 PatientDev 0x103f1a674 facebook::react::ObjCInteropTurboModule::ObjCInteropTurboModule(facebook::react::ObjCTurboModule::InitParams const&) + 176 (RCTInteropTurboModule.mm:188) 7 PatientDev 0x103f1bed0 facebook::react::ObjCInteropTurboModule::ObjCInteropTurboModule(facebook::react::ObjCTurboModule::InitParams const&) + 36 (RCTInteropTurboModule.mm:187) 8 PatientDev 0x103f4f400 facebook::react::ObjCInteropTurboModule* std::__1::construct_at[abi:ue170006](facebook::react::ObjCInteropTurboModule*, facebook::react::ObjCTurboModule::InitParams&) + 44 (construct_at.h:41) 9 PatientDev 0x103f4f220 void std::__1::allocator_traits>::construct[abi:ue170006](std::__1::allocator&, facebook::react::ObjCInteropTurboModule*, facebook::react::ObjCTurboModule::InitParams&) + 36 (allocator_traits.h:304) 10 PatientDev 0x103f4f14c std::__1::__shared_ptr_emplace>::__shared_ptr_emplace[abi:ue170006](std::__1::allocator, facebook::react::ObjCTurboModule::InitParams&) + 116 (shared_ptr.h:300) 11 PatientDev 0x103f4ee34 std::__1::__shared_ptr_emplace>::__shared_ptr_emplace[abi:ue170006](std::__1::allocator, facebook::react::ObjCTurboModule::InitParams&) + 36 (shared_ptr.h:292) 12 PatientDev 0x103f4ed3c std::__1::shared_ptr std::__1::allocate_shared[abi:ue170006], facebook::react::ObjCTurboModule::InitParams&, void>(std::__1::allocator const&, facebook::react::ObjCTurboModule::InitParams&) + 60 (shared_ptr.h:1023) 13 PatientDev 0x103f468a0 std::__1::shared_ptr std::__1::make_shared[abi:ue170006](facebook::react::ObjCTurboModule::InitParams&) + 52 (shared_ptr.h:1032) 14 PatientDev 0x103f4661c -[RCTTurboModuleManager provideLegacyModule:] + 1184 (RCTTurboModuleManager.mm:463) 15 PatientDev 0x103f54c10 -[RCTTurboModuleManager installJSBindings:]::$_1::operator()(std::__1::basic_string, std::__1::allocator> const&) const + 128 (RCTTurboModuleManager.mm:951) 16 PatientDev 0x103f54b84 decltype(std::declval<-[RCTTurboModuleManager installJSBindings:]::$_1&>()(std::declval, std::__1::allocator> const&>())) std::__1::__invoke[abi:ue170006]<-[RCTTurboModuleManager installJSBindings:]::$_1&, std::__1::basic_string, std::__1::allocator> const&>(-[RCTTurboModuleManager installJSBindings:]::$_1&, std::__1::basic_string, std::__1::allocator> const&) + 40 (invoke.h:340) 17 PatientDev 0x103f54b2c std::__1::shared_ptr std::__1::__invoke_void_return_wrapper, false>::__call[abi:ue170006]<-[RCTTurboModuleManager installJSBindings:]::$_1&, std::__1::basic_string, std::__1::allocator> const&>(-[RCTTurboModuleManager installJSBindings:]::$_1&, std::__1::basic_string, std::__1::allocator> const&) + 40 (invoke.h:407) 18 PatientDev 0x103f54af8 std::__1::__function::__alloc_func<-[RCTTurboModuleManager installJSBindings:]::$_1, std::__1::allocator<-[RCTTurboModuleManager installJSBindings:]::$_1>, std::__1::shared_ptr (std::__1::basic_string, std::__1::allocator> const&)>::operator()[abi:ue170006](std::__1::basic_string, std::__1::allocator> const&) + 48 (function.h:193) 19 PatientDev 0x103f537a8 std::__1::__function::__func<-[RCTTurboModuleManager installJSBindings:]::$_1, std::__1::allocator<-[RCTTurboModuleManager installJSBindings:]::$_1>, std::__1::shared_ptr (std::__1::basic_string, std::__1::allocator> const&)>::operator()(std::__1::basic_string, std::__1::allocator> const&) + 44 (function.h:364) 20 PatientDev 0x103bf0cc0 std::__1::__function::__value_func (std::__1::basic_string, std::__1::allocator> const&)>::operator()[abi:ue170006](std::__1::basic_string, std::__1::allocator> const&) const + 88 (function.h:518) 21 PatientDev 0x103bed16c std::__1::function (std::__1::basic_string, std::__1::allocator> const&)>::operator()(std::__1::basic_string, std::__1::allocator> const&) const + 40 (function.h:1169) 22 PatientDev 0x103bece7c facebook::react::TurboModuleBinding::getModule(facebook::jsi::Runtime&, std::__1::basic_string, std::__1::allocator> const&) const + 100 (TurboModuleBinding.cpp:133) 23 PatientDev 0x103bf058c facebook::react::BridgelessNativeModuleProxy::get(facebook::jsi::Runtime&, facebook::jsi::PropNameID const&) + 196 (TurboModuleBinding.cpp:46) 24 PatientDev 0x10386eb14 facebook::jsi::DecoratedHostObject::get(facebook::jsi::Runtime&, facebook::jsi::PropNameID const&) + 92 (decorator.h:70) 25 hermes 0x10cb966ec facebook::hermes::HermesRuntimeImpl::JsiProxy::get(hermes::vm::SymbolID) + 84 26 hermes 0x10cc3b068 hermes::vm::JSObject::getNamedWithReceiver_RJS(hermes::vm::Handle, hermes::vm::Runtime&, hermes::vm::SymbolID, hermes::vm::Handle, hermes::vm::PropOpFlags, hermes::vm::PropertyCacheEntry*) + 692 27 hermes 0x10cc23c5c hermes::vm::CallResult hermes::vm::Interpreter::interpretFunction(hermes::vm::Runtime&, hermes::vm::InterpreterState&) + 10724 28 hermes 0x10cc21244 hermes::vm::Runtime::interpretFunctionImpl(hermes::vm::CodeBlock*) + 132 29 hermes 0x10cc07c70 hermes::vm::JSFunction::_callImpl(hermes::vm::Handle, hermes::vm::Runtime&) + 40 30 hermes 0x10cc05c7c hermes::vm::Callable::executeCall0(hermes::vm::Handle, hermes::vm::Runtime&, hermes::vm::Handle, bool) + 176 31 hermes 0x10cc3b494 hermes::vm::JSObject::getComputedWithReceiver_RJS(hermes::vm::Handle, hermes::vm::Runtime&, hermes::vm::Handle, hermes::vm::Handle) + 628 32 hermes 0x10cc24194 hermes::vm::CallResult hermes::vm::Interpreter::interpretFunction(hermes::vm::Runtime&, hermes::vm::InterpreterState&) + 12060 33 hermes 0x10cc21244 hermes::vm::Runtime::interpretFunctionImpl(hermes::vm::CodeBlock*) + 132 34 hermes 0x10cc07c70 hermes::vm::JSFunction::_callImpl(hermes::vm::Handle, hermes::vm::Runtime&) + 40 35 hermes 0x10cc074f0 hermes::vm::BoundFunction::_boundCall(hermes::vm::BoundFunction*, hermes::inst::Inst const*, hermes::vm::Runtime&) + 584 36 hermes 0x10cb8f39c facebook::hermes::HermesRuntimeImpl::call(facebook::jsi::Function const&, facebook::jsi::Value const&, facebook::jsi::Value const*, unsigned long) + 724 37 PatientDev 0x10386dedc facebook::jsi::RuntimeDecorator::call(facebook::jsi::Function const&, facebook::jsi::Value const&, facebook::jsi::Value const*, unsigned long) + 76 (decorator.h:347) 38 PatientDev 0x10308b3d4 facebook::jsi::Function::call(facebook::jsi::Runtime&, facebook::jsi::Value const*, unsigned long) const + 100 (jsi-inl.h:264) 39 PatientDev 0x10308b364 facebook::jsi::Function::call(facebook::jsi::Runtime&, std::initializer_list) const + 112 (jsi-inl.h:269) 40 PatientDev 0x1040085ac facebook::react::Task::execute(facebook::jsi::Runtime&, bool) + 296 (Task.cpp:45) 41 PatientDev 0x103ff0e64 facebook::react::RuntimeScheduler_Modern::executeMacrotask(facebook::jsi::Runtime&, facebook::react::Task&, bool) const + 76 (RuntimeScheduler_Modern.cpp:330) 42 PatientDev 0x103ff0d60 facebook::react::RuntimeScheduler_Modern::executeTask(facebook::jsi::Runtime&, facebook::react::Task&, std::__1::chrono::time_point>>) + 204 (RuntimeScheduler_Modern.cpp:291) 43 PatientDev 0x103ff08f0 facebook::react::RuntimeScheduler_Modern::startWorkLoop(facebook::jsi::Runtime&, bool) + 224 (RuntimeScheduler_Modern.cpp:242) 44 PatientDev 0x103ff6a50 facebook::react::RuntimeScheduler_Modern::scheduleWorkLoop()::$_1::operator()(facebook::jsi::Runtime&) const + 44 (RuntimeScheduler_Modern.cpp:222) 45 PatientDev 0x103ff6a18 decltype(std::declval()(std::declval())) std::__1::__invoke[abi:ue170006](facebook::react::RuntimeScheduler_Modern::scheduleWorkLoop()::$_1&, facebook::jsi::Runtime&) + 32 (invoke.h:340) 46 PatientDev 0x103ff69c8 void std::__1::__invoke_void_return_wrapper::__call[abi:ue170006](facebook::react::RuntimeScheduler_Modern::scheduleWorkLoop()::$_1&, facebook::jsi::Runtime&) + 32 (invoke.h:415) 47 PatientDev 0x103ff699c std::__1::__function::__alloc_func, void (facebook::jsi::Runtime&)>::operator()[abi:ue170006](facebook::jsi::Runtime&) + 36 (function.h:193) 48 PatientDev 0x103ff5818 std::__1::__function::__func, void (facebook::jsi::Runtime&)>::operator()(facebook::jsi::Runtime&) + 36 (function.h:364) 49 PatientDev 0x1030a55f4 std::__1::__function::__value_func::operator()[abi:ue170006](facebook::jsi::Runtime&) const + 76 (function.h:518) 50 PatientDev 0x1030a5240 std::__1::function::operator()(facebook::jsi::Runtime&) const + 32 (function.h:1169) 51 PatientDev 0x103f9c228 facebook::react::ReactInstance::ReactInstance(std::__1::unique_ptr>, std::__1::shared_ptr, std::__1::shared_ptr, std::__1::function, facebook::react::jsinspector_modern::PageTarget*)::$_0::operator()(std::__1::function&&) const::'lambda'()::operator()() const + 112 (ReactInstance.cpp:70) 52 PatientDev 0x103f9c1ac decltype(std::declval>, std::__1::shared_ptr, std::__1::shared_ptr, std::__1::function, facebook::react::jsinspector_modern::PageTarget*)::$_0::operator()(std::__1::function&&) const::'lambda'()&>()()) std::__1::__invoke[abi:ue170006]>, std::__1::shared_ptr, std::__1::shared_ptr, std::__1::function, facebook::react::jsinspector_modern::PageTarget*)::$_0::operator()(std::__1::function&&) const::'lambda'()&>(facebook::react::ReactInstance::ReactInstance(std::__1::unique_ptr>, std::__1::shared_ptr, std::__1::shared_ptr, std::__1::function, facebook::react::jsinspector_modern::PageTarget*)::$_0::operator()(std::__1::function&&) const::'lambda'()&) + 24 (invoke.h:340) 53 PatientDev 0x103f9c164 void std::__1::__invoke_void_return_wrapper::__call[abi:ue170006]>, std::__1::shared_ptr, std::__1::shared_ptr, std::__1::function, facebook::react::jsinspector_modern::PageTarget*)::$_0::operator()(std::__1::function&&) const::'lambda'()&>(facebook::react::ReactInstance::ReactInstance(std::__1::unique_ptr>, std::__1::shared_ptr, std::__1::shared_ptr, std::__1::function, facebook::react::jsinspector_modern::PageTarget*)::$_0::operator()(std::__1::function&&) const::'lambda'()&) + 24 (invoke.h:415) 54 PatientDev 0x103f9c140 std::__1::__function::__alloc_func>, std::__1::shared_ptr, std::__1::shared_ptr, std::__1::function, facebook::react::jsinspector_modern::PageTarget*)::$_0::operator()(std::__1::function&&) const::'lambda'(), std::__1::allocator>, std::__1::shared_ptr, std::__1::shared_ptr, std::__1::function, facebook::react::jsinspector_modern::PageTarget*)::$_0::operator()(std::__1::function&&) const::'lambda'()>, void ()>::operator()[abi:ue170006]() + 28 (function.h:193) 55 PatientDev 0x103f9ae98 std::__1::__function::__func>, std::__1::shared_ptr, std::__1::shared_ptr, std::__1::function, facebook::react::jsinspector_modern::PageTarget*)::$_0::operator()(std::__1::function&&) const::'lambda'(), std::__1::allocator>, std::__1::shared_ptr, std::__1::shared_ptr, std::__1::function, facebook::react::jsinspector_modern::PageTarget*)::$_0::operator()(std::__1::function&&) const::'lambda'()>, void ()>::operator()() + 28 (function.h:364) 56 PatientDev 0x10308be3c std::__1::__function::__value_func::operator()[abi:ue170006]() const + 68 (function.h:518) 57 PatientDev 0x10308bdec std::__1::function::operator()() const + 24 (function.h:1169) 58 PatientDev 0x103b21a24 facebook::react::tryAndReturnError(std::__1::function const&) + 24 (RCTCxxUtils.mm:73) 59 PatientDev 0x103b4aba4 facebook::react::RCTMessageThread::tryFunc(std::__1::function const&) + 36 (RCTMessageThread.mm:68) 60 PatientDev 0x103b4f64c facebook::react::RCTMessageThread::runOnQueue(std::__1::function&&)::$_1::operator()() const + 80 (RCTMessageThread.mm:81) 61 PatientDev 0x103b4f5f0 decltype(std::declval&&)::$_1&>()()) std::__1::__invoke[abi:ue170006]&&)::$_1&>(facebook::react::RCTMessageThread::runOnQueue(std::__1::function&&)::$_1&) + 24 (invoke.h:340) 62 PatientDev 0x103b4f5a8 void std::__1::__invoke_void_return_wrapper::__call[abi:ue170006]&&)::$_1&>(facebook::react::RCTMessageThread::runOnQueue(std::__1::function&&)::$_1&) + 24 (invoke.h:415) 63 PatientDev 0x103b4f584 std::__1::__function::__alloc_func&&)::$_1, std::__1::allocator&&)::$_1>, void ()>::operator()[abi:ue170006]() + 28 (function.h:193) 64 PatientDev 0x103b4e294 std::__1::__function::__func&&)::$_1, std::__1::allocator&&)::$_1>, void ()>::operator()() + 28 (function.h:364) 65 PatientDev 0x10308be3c std::__1::__function::__value_func::operator()[abi:ue170006]() const + 68 (function.h:518) 66 PatientDev 0x10308bdec std::__1::function::operator()() const + 24 (function.h:1169) 67 PatientDev 0x103b4a968 invocation function for block in facebook::react::RCTMessageThread::runAsync(std::__1::function) + 48 (RCTMessageThread.mm:44) 68 CoreFoundation 0x18040ec50 __CFRUNLOOP_IS_CALLING_OUT_TO_A_BLOCK__ + 20 69 CoreFoundation 0x18040e398 __CFRunLoopDoBlocks + 352 70 CoreFoundation 0x180409264 __CFRunLoopRun + 2364 71 CoreFoundation 0x180408514 CFRunLoopRunSpecific + 572 72 PatientDev 0x103f84994 +[RCTJSThreadManager runRunLoop] + 292 (RCTJSThreadManager.mm:102) 73 Foundation 0x180e10be4 __NSThread__start__ + 720 74 libsystem_pthread.dylib 0x10ae3b414 _pthread_start + 104 75 libsystem_pthread.dylib 0x10ae365e0 thread_start + 8 Thread 13:: com.apple.CFSocket.private 0 libsystem_kernel.dylib 0x10a037b0c __select + 8 1 CoreFoundation 0x18041d0ac __CFSocketManager + 612 2 libsystem_pthread.dylib 0x10ae3b414 _pthread_start + 104 3 libsystem_pthread.dylib 0x10ae365e0 thread_start + 8 Thread 14:: hades 0 libsystem_kernel.dylib 0x10a030a70 __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x10ae3b9cc _pthread_cond_wait + 1216 2 libc++.1.dylib 0x1802ea6d8 std::__1::condition_variable::wait(std::__1::unique_lock&) + 24 3 hermes 0x10ccea448 hermes::vm::HadesGC::Executor::worker() + 112 4 hermes 0x10ccea3ac void* std::__1::__thread_proxy[abi:v160006]>, hermes::vm::HadesGC::Executor::Executor()::'lambda'()>>(void*) + 44 5 libsystem_pthread.dylib 0x10ae3b414 _pthread_start + 104 6 libsystem_pthread.dylib 0x10ae365e0 thread_start + 8 Thread 15:: com.apple.CFStream.LegacyThread 0 libsystem_kernel.dylib 0x10a02d570 mach_msg2_trap + 8 1 libsystem_kernel.dylib 0x10a03eb80 mach_msg2_internal + 76 2 libsystem_kernel.dylib 0x10a035798 mach_msg_overwrite + 532 3 libsystem_kernel.dylib 0x10a02d8e8 mach_msg + 20 4 CoreFoundation 0x18040e6c4 __CFRunLoopServiceMachPort + 156 5 CoreFoundation 0x180408da4 __CFRunLoopRun + 1148 6 CoreFoundation 0x180408514 CFRunLoopRunSpecific + 572 7 CoreFoundation 0x18042bdc0 _legacyStreamRunLoop_workThread + 260 8 libsystem_pthread.dylib 0x10ae3b414 _pthread_start + 104 9 libsystem_pthread.dylib 0x10ae365e0 thread_start + 8 Thread 16:: hades 0 libsystem_kernel.dylib 0x10a030a70 __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x10ae3b9cc _pthread_cond_wait + 1216 2 libc++.1.dylib 0x1802ea6d8 std::__1::condition_variable::wait(std::__1::unique_lock&) + 24 3 hermes 0x10ccea448 hermes::vm::HadesGC::Executor::worker() + 112 4 hermes 0x10ccea3ac void* std::__1::__thread_proxy[abi:v160006]>, hermes::vm::HadesGC::Executor::Executor()::'lambda'()>>(void*) + 44 5 libsystem_pthread.dylib 0x10ae3b414 _pthread_start + 104 6 libsystem_pthread.dylib 0x10ae365e0 thread_start + 8 Thread 12 crashed with ARM Thread State (64-bit): x0: 0x0000000000000000 x1: 0x0000000000000000 x2: 0x000000016d85ba5e x3: 0x0000000000000001 x4: 0x0000000000000000 x5: 0x0000000000000004 x6: 0x0000000000000001 x7: 0x0000000000000b90 x8: 0x0000000000000000 x9: 0x8f525636f1560095 x10: 0x0000000000000050 x11: 0x00000001e054d0d9 x12: 0x00005ffe1fb6c227 x13: 0x0000000000000003 x14: 0x0000000180000000 x15: 0x0000000242bd4000 x16: 0x0000000109ec4c20 x17: 0x000000000000000c x18: 0x0000000000000000 x19: 0x0000600000287900 x20: 0x00000000000054db x21: 0x00000000000054db x22: 0x000000010fc9bc48 x23: 0x0000000000000000 x24: 0x000000010bb2e5f0 x25: 0x0000000000000000 x26: 0x0000000000bfef50 x27: 0x000000010fc9bc48 x28: 0x000000010fc9bc00 fp: 0x000000016d85ba10 lr: 0x0000000102d44594 sp: 0x000000016d85ba00 pc: 0x0000000109ec4c24 cpsr: 0x60001000 far: 0x0000000000000000 esr: 0x92000006 (Data Abort) byte read Translation fault Binary Images: 0x10a13c000 - 0x10a1c7fff dyld (*) <37bbc384-0755-31c7-a808-0ed49e44dd8e> /usr/lib/dyld 0x10a27c000 - 0x10a287fff libobjc-trampolines.dylib (*) /Volumes/VOLUME/*/libobjc-trampolines.dylib 0x109ee4000 - 0x109eebfff live.100ms.HMS.Analytics (0.0.2) <8dfd1681-5c7b-3d3b-9e36-3507813dcc3a> /Users/USER/Library/Developer/CoreSimulator/Devices/F2DAB3E6-B36F-4938-A648-C9D838228E39/data/Containers/Bundle/Application/DE6CAFFC-853D-4D39-A28E-095E50C3AC48/PatientDev.app/Frameworks/HMSAnalyticsSDK.framework/HMSAnalyticsSDK 0x109f34000 - 0x109f4bfff live.100ms.HMS.ScreenShare (0.0.9) /Users/USER/Library/Developer/CoreSimulator/Devices/F2DAB3E6-B36F-4938-A648-C9D838228E39/data/Containers/Bundle/Application/DE6CAFFC-853D-4D39-A28E-095E50C3AC48/PatientDev.app/Frameworks/HMSBroadcastExtensionSDK.framework/HMSBroadcastExtensionSDK 0x109f64000 - 0x109f77fff live.100ms.HMS.HLSPlayer (0.0.2) /Users/USER/Library/Developer/CoreSimulator/Devices/F2DAB3E6-B36F-4938-A648-C9D838228E39/data/Containers/Bundle/Application/DE6CAFFC-853D-4D39-A28E-095E50C3AC48/PatientDev.app/Frameworks/HMSHLSPlayerSDK.framework/HMSHLSPlayerSDK 0x10b274000 - 0x10b573fff live.100ms.HMS (1.15.0) <187f375b-7e1b-3d32-b427-2cbf781c8c0d> /Users/USER/Library/Developer/CoreSimulator/Devices/F2DAB3E6-B36F-4938-A648-C9D838228E39/data/Containers/Bundle/Application/DE6CAFFC-853D-4D39-A28E-095E50C3AC48/PatientDev.app/Frameworks/HMSSDK.framework/HMSSDK 0x10c0f4000 - 0x10ca73fff org.webrtc.WebRTC (1.0) <4c4c4400-5555-3144-a1d3-6cc12c1cc819> /Users/USER/Library/Developer/CoreSimulator/Devices/F2DAB3E6-B36F-4938-A648-C9D838228E39/data/Containers/Bundle/Application/DE6CAFFC-853D-4D39-A28E-095E50C3AC48/PatientDev.app/Frameworks/WebRTC.framework/WebRTC 0x10cb84000 - 0x10ce8bfff dev.hermesengine.iphonesimulator (0.12.0) <04b8008c-a953-336f-8043-1540012d2df6> /Users/USER/Library/Developer/CoreSimulator/Devices/F2DAB3E6-B36F-4938-A648-C9D838228E39/data/Containers/Bundle/Application/DE6CAFFC-853D-4D39-A28E-095E50C3AC48/PatientDev.app/Frameworks/hermes.framework/hermes 0x109ec4000 - 0x109ecbfff libsystem_platform.dylib (*) /usr/lib/system/libsystem_platform.dylib 0x10a02c000 - 0x10a067fff libsystem_kernel.dylib (*) <0c657561-0a7d-344e-838f-109a718679cf> /usr/lib/system/libsystem_kernel.dylib 0x10ae34000 - 0x10ae43fff libsystem_pthread.dylib (*) /usr/lib/system/libsystem_pthread.dylib 0x102d3c000 - 0x1055d7fff com.hellowellness.patient.dev (1.0.0) <465f2b92-20e3-3f99-87e1-68d89b530df9> /Users/USER/Library/Developer/CoreSimulator/Devices/F2DAB3E6-B36F-4938-A648-C9D838228E39/data/Containers/Bundle/Application/DE6CAFFC-853D-4D39-A28E-095E50C3AC48/PatientDev.app/PatientDev 0x109fa0000 - 0x109febfff dyld_sim (*) <496faa0c-90ce-3140-9e23-1f02a673b817> /Volumes/VOLUME/*/dyld_sim 0x180381000 - 0x180734fff com.apple.CoreFoundation (6.9) <7d1f50b3-ed7d-3987-bced-ad6779b49c86> /Volumes/VOLUME/*/CoreFoundation.framework/CoreFoundation 0x18ef03000 - 0x18ef0bfff com.apple.GraphicsServices (1.0) <4a4b088d-4b30-3333-87b4-a40533ac5580> /Volumes/VOLUME/*/GraphicsServices.framework/GraphicsServices 0x1847f9000 - 0x186198fff com.apple.UIKitCore (1.0) <5354928b-4688-337f-b9fc-835aa5aa3543> /Volumes/VOLUME/*/UIKitCore.framework/UIKitCore 0x0 - 0xffffffffffffffff ??? (*) <00000000-0000-0000-0000-000000000000> ??? 0x1807b4000 - 0x18127bfff com.apple.Foundation (6.9) <0480a70b-2076-3964-b6e5-3c8d92b1d9dc> /Volumes/VOLUME/*/Foundation.framework/Foundation 0x1800ee000 - 0x1800f1ffc libsystem_blocks.dylib (*) <1b7f0e87-abc6-30a5-800a-49260237e5c8> /Volumes/VOLUME/*/libsystem_blocks.dylib 0x184328000 - 0x1846bafff com.apple.CFNetwork (1.0) <98afd9b7-9e45-3c02-a8d8-b3118d48efdf> /Volumes/VOLUME/*/CFNetwork.framework/CFNetwork 0x1802da000 - 0x18035bfff libc++.1.dylib (*) /Volumes/VOLUME/*/libc++.1.dylib EOF ----------- Full Report ----------- {"app_name":"PatientDev","timestamp":"2024-08-11 10:31:03.00 +0530","app_version":"1.0.0","slice_uuid":"465f2b92-20e3-3f99-87e1-68d89b530df9","build_version":"1","platform":7,"bundleID":"com.hellowellness.patient.dev","share_with_app_devs":0,"is_first_party":0,"bug_type":"309","os_version":"macOS 14.5 (23F79)","roots_installed":0,"name":"PatientDev","incident_id":"39DCC671-22E5-4ED3-BEF9-D79F531D0F46"} { "uptime" : 880000, "procRole" : "Foreground", "version" : 2, "userID" : 501, "deployVersion" : 210, "modelCode" : "MacBookPro18,3", "coalitionID" : 275241, "osVersion" : { "train" : "macOS 14.5", "build" : "23F79", "releaseType" : "User" }, "captureTime" : "2024-08-11 10:30:56.7986 +0530", "codeSigningMonitor" : 1, "incident" : "39DCC671-22E5-4ED3-BEF9-D79F531D0F46", "pid" : 42778, "translated" : false, "cpuType" : "ARM-64", "roots_installed" : 0, "bug_type" : "309", "procLaunch" : "2024-08-11 10:30:45.9069 +0530", "procStartAbsTime" : 21168339928780, "procExitAbsTime" : 21168595396968, "procName" : "PatientDev", "procPath" : "\/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/F2DAB3E6-B36F-4938-A648-C9D838228E39\/data\/Containers\/Bundle\/Application\/DE6CAFFC-853D-4D39-A28E-095E50C3AC48\/PatientDev.app\/PatientDev", "bundleInfo" : {"CFBundleShortVersionString":"1.0.0","CFBundleVersion":"1","CFBundleIdentifier":"com.hellowellness.patient.dev"}, "storeInfo" : {"deviceIdentifierForVendor":"1494A337-4B05-5F8E-9F62-7524D9D9AA0A","thirdParty":true}, "parentProc" : "launchd_sim", "parentPid" : 36557, "coalitionName" : "com.apple.CoreSimulator.SimDevice.F2DAB3E6-B36F-4938-A648-C9D838228E39", "crashReporterKey" : "87633338-EE75-9C54-B9A3-099783D6692B", "responsiblePid" : 12303, "responsibleProc" : "SimulatorTrampoline", "codeSigningID" : "com.hellowellness.patient.dev", "codeSigningTeamID" : "", "codeSigningFlags" : 570425861, "codeSigningValidationCategory" : 10, "codeSigningTrustLevel" : 4294967295, "instructionByteStream" : {"beforePC":"AagxbiMAJh5AAADLPwAD6yEwg5oAAAGLwANf1h8gA9UfIAPVAex8kg==","atPC":"IADAPcP5\/xBiBME8AgxAkmMAAsthAMA9AByhTgUAABQfIAPVHyAD1Q=="}, "wakeTime" : 12838, "sleepWakeUUID" : "DAA2C5FB-AB27-4287-9A49-44DCD6113F03", "sip" : "enabled", "vmRegionInfo" : "0 is not in any region. Bytes before following region: 4342398976\n REGION TYPE START - END [ VSIZE] PRT\/MAX SHRMOD REGION DETAIL\n UNUSED SPACE AT START\n---> \n __TEXT 102d3c000-1055d8000 [ 40.6M] r-x\/r-x SM=COW \/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/F2DAB3E6-B36F-4938-A648-C9D838228E39\/data\/Containers\/Bundle\/Application\/DE6CAFFC-853D-4D39-A28E-095E50C3AC48\/PatientDev.app\/PatientDev", "exception" : {"codes":"0x0000000000000001, 0x0000000000000000","rawCodes":[1,0],"type":"EXC_BAD_ACCESS","signal":"SIGSEGV","subtype":"KERN_INVALID_ADDRESS at 0x0000000000000000"}, "termination" : {"flags":0,"code":11,"namespace":"SIGNAL","indicator":"Segmentation fault: 11","byProc":"exc handler","byPid":42778}, "ktriageinfo" : "VM - (arg = 0x3) mach_vm_allocate_kernel failed within call to vm_map_enter\nVM - (arg = 0x3) mach_vm_allocate_kernel failed within call to vm_map_enter\nVM - (arg = 0x3) mach_vm_allocate_kernel failed within call to vm_map_enter\nVM - (arg = 0x3) mach_vm_allocate_kernel failed within call to vm_map_enter\nVM - (arg = 0x3) mach_vm_allocate_kernel failed within call to vm_map_enter\n", "vmregioninfo" : "0 is not in any region. Bytes before following region: 4342398976\n REGION TYPE START - END [ VSIZE] PRT\/MAX SHRMOD REGION DETAIL\n UNUSED SPACE AT START\n---> \n __TEXT 102d3c000-1055d8000 [ 40.6M] r-x\/r-x SM=COW \/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/F2DAB3E6-B36F-4938-A648-C9D838228E39\/data\/Containers\/Bundle\/Application\/DE6CAFFC-853D-4D39-A28E-095E50C3AC48\/PatientDev.app\/PatientDev", "extMods" : {"caller":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"system":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"targeted":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"warnings":0}, "faultingThread" : 12, "threads" : [{"id":16655160,"threadState":{"x":[{"value":268451845},{"value":21592279046},{"value":8589934592},{"value":45092861640704},{"value":0},{"value":45092861640704},{"value":2},{"value":4294967295},{"value":18446744073709550527},{"value":10499},{"value":0},{"value":1},{"value":10499},{"value":3072},{"value":0},{"value":9895604649984},{"value":18446744073709551569},{"value":9895604652290},{"value":0},{"value":4294967295},{"value":2},{"value":45092861640704},{"value":0},{"value":45092861640704},{"value":6124474904},{"value":8589934592},{"value":21592279046},{"value":21592279046},{"value":4412409862}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4462996352},"cpsr":{"value":4096},"fp":{"value":6124474752},"sp":{"value":6124474672},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4462925168},"far":{"value":0}},"queue":"com.apple.main-thread","frames":[{"imageOffset":5488,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":9},{"imageOffset":76672,"symbol":"mach_msg2_internal","symbolLocation":76,"imageIndex":9},{"imageOffset":38808,"symbol":"mach_msg_overwrite","symbolLocation":532,"imageIndex":9},{"imageOffset":6376,"symbol":"mach_msg","symbolLocation":20,"imageIndex":9},{"imageOffset":579268,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":156,"imageIndex":13},{"imageOffset":556452,"symbol":"__CFRunLoopRun","symbolLocation":1148,"imageIndex":13},{"imageOffset":554260,"symbol":"CFRunLoopRunSpecific","symbolLocation":572,"imageIndex":13},{"imageOffset":15076,"symbol":"GSEventRunModal","symbolLocation":160,"imageIndex":14},{"imageOffset":12513344,"symbol":"-[UIApplication _run]","symbolLocation":868,"imageIndex":15},{"imageOffset":12528840,"symbol":"UIApplicationMain","symbolLocation":124,"imageIndex":15},{"imageOffset":20576,"sourceLine":7,"sourceFile":"main.m","symbol":"main","imageIndex":11,"symbolLocation":96},{"imageOffset":5444,"symbol":"start_sim","symbolLocation":20,"imageIndex":12},{"imageOffset":24800,"symbol":"start","symbolLocation":2360,"imageIndex":0}]},{"id":16655202,"frames":[{"imageOffset":9676,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":10}],"threadState":{"x":[{"value":6125039616},{"value":6663},{"value":6124503040},{"value":0},{"value":409604},{"value":18446744073709551615},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6125039616},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4477642188},"far":{"value":0}}},{"id":16655208,"frames":[{"imageOffset":9676,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":10}],"threadState":{"x":[{"value":6125613056},{"value":4099},{"value":6125076480},{"value":0},{"value":409604},{"value":18446744073709551615},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6125613056},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4477642188},"far":{"value":0}}},{"id":16655211,"name":"com.apple.uikit.eventfetch-thread","threadState":{"x":[{"value":268451845},{"value":21592279046},{"value":8589934592},{"value":48391396524032},{"value":2162692},{"value":48391396524032},{"value":2},{"value":4294967295},{"value":18446744073709550527},{"value":11267},{"value":0},{"value":1},{"value":11267},{"value":3072},{"value":2043},{"value":2328010747},{"value":18446744073709551569},{"value":83},{"value":0},{"value":4294967295},{"value":2},{"value":48391396524032},{"value":2162692},{"value":48391396524032},{"value":6126755192},{"value":8589934592},{"value":21592279046},{"value":21592279046},{"value":4412409862}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4462996352},"cpsr":{"value":4096},"fp":{"value":6126755040},"sp":{"value":6126754960},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4462925168},"far":{"value":0}},"frames":[{"imageOffset":5488,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":9},{"imageOffset":76672,"symbol":"mach_msg2_internal","symbolLocation":76,"imageIndex":9},{"imageOffset":38808,"symbol":"mach_msg_overwrite","symbolLocation":532,"imageIndex":9},{"imageOffset":6376,"symbol":"mach_msg","symbolLocation":20,"imageIndex":9},{"imageOffset":579268,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":156,"imageIndex":13},{"imageOffset":556452,"symbol":"__CFRunLoopRun","symbolLocation":1148,"imageIndex":13},{"imageOffset":554260,"symbol":"CFRunLoopRunSpecific","symbolLocation":572,"imageIndex":13},{"imageOffset":6513548,"symbol":"-[NSRunLoop(NSRunLoop) runMode:beforeDate:]","symbolLocation":208,"imageIndex":17},{"imageOffset":6514096,"symbol":"-[NSRunLoop(NSRunLoop) runUntilDate:]","symbolLocation":60,"imageIndex":17},{"imageOffset":13192992,"symbol":"-[UIEventFetcher threadMain]","symbolLocation":404,"imageIndex":15},{"imageOffset":6671332,"symbol":"__NSThread__start__","symbolLocation":720,"imageIndex":17},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":10},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":10}]},{"id":16655212,"frames":[{"imageOffset":9676,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":10}],"threadState":{"x":[{"value":6127333376},{"value":12035},{"value":6126796800},{"value":0},{"value":409604},{"value":18446744073709551615},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6127333376},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4477642188},"far":{"value":0}}},{"id":16655214,"frames":[{"imageOffset":9676,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":10}],"threadState":{"x":[{"value":6128480256},{"value":32515},{"value":6127943680},{"value":0},{"value":409604},{"value":18446744073709551615},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6128480256},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4477642188},"far":{"value":0}}},{"id":16655226,"frames":[{"imageOffset":9676,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":10}],"threadState":{"x":[{"value":6129053696},{"value":32259},{"value":6128517120},{"value":0},{"value":409604},{"value":18446744073709551615},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6129053696},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4477642188},"far":{"value":0}}},{"id":16655227,"frames":[{"imageOffset":9676,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":10}],"threadState":{"x":[{"value":6129627136},{"value":32003},{"value":6129090560},{"value":0},{"value":409604},{"value":18446744073709551615},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6129627136},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4477642188},"far":{"value":0}}},{"id":16655228,"name":"com.google.firebase.crashlytics.MachExceptionServer","threadState":{"x":[{"value":1},{"value":0},{"value":1},{"value":4461448036},{"value":10758893076481},{"value":0},{"value":0},{"value":0},{"value":4382093692},{"value":5},{"value":2505},{"value":1},{"value":0},{"value":0},{"value":8388592936,"symbolLocation":0,"symbol":"_NSConcreteStackBlock"},{"value":8388592936,"symbolLocation":0,"symbol":"_NSConcreteStackBlock"},{"value":4},{"value":6443429852,"symbolLocation":0,"symbol":"-[__NSStackBlock__ release]"},{"value":0},{"value":6129647616},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4347858448},"cpsr":{"value":2147487744},"fp":{"value":4472454816},"sp":{"value":4472454608},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4462939452},"far":{"value":0}},"frames":[{"imageOffset":19772,"symbol":"write","symbolLocation":8,"imageIndex":9},{"imageOffset":5459472,"sourceLine":62,"sourceFile":"FIRCLSInternalLogging.c","symbol":"FIRCLSSDKFileLog","imageIndex":11,"symbolLocation":424},{"imageOffset":5471048,"sourceLine":265,"sourceFile":"FIRCLSMachException.c","symbol":"FIRCLSMachExceptionReply","imageIndex":11,"symbolLocation":332},{"imageOffset":5469676,"sourceLine":176,"sourceFile":"FIRCLSMachException.c","symbol":"FIRCLSMachExceptionServer","imageIndex":11,"symbolLocation":100},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":10},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":10}]},{"id":16655248,"name":"com.apple.CFNetwork.CustomProtocols","threadState":{"x":[{"value":268451845},{"value":21592279046},{"value":8589934592},{"value":111080739176448},{"value":0},{"value":111080739176448},{"value":2},{"value":4294967295},{"value":18446744073709550527},{"value":25863},{"value":0},{"value":1},{"value":25863},{"value":3072},{"value":0},{"value":2199023255552},{"value":18446744073709551569},{"value":2199023256066},{"value":0},{"value":4294967295},{"value":2},{"value":111080739176448},{"value":0},{"value":111080739176448},{"value":6130212184},{"value":8589934592},{"value":21592279046},{"value":21592279046},{"value":4412409862}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4462996352},"cpsr":{"value":4096},"fp":{"value":6130212032},"sp":{"value":6130211952},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4462925168},"far":{"value":0}},"frames":[{"imageOffset":5488,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":9},{"imageOffset":76672,"symbol":"mach_msg2_internal","symbolLocation":76,"imageIndex":9},{"imageOffset":38808,"symbol":"mach_msg_overwrite","symbolLocation":532,"imageIndex":9},{"imageOffset":6376,"symbol":"mach_msg","symbolLocation":20,"imageIndex":9},{"imageOffset":579268,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":156,"imageIndex":13},{"imageOffset":556452,"symbol":"__CFRunLoopRun","symbolLocation":1148,"imageIndex":13},{"imageOffset":554260,"symbol":"CFRunLoopRunSpecific","symbolLocation":572,"imageIndex":13},{"imageOffset":2198360,"imageIndex":19},{"imageOffset":6671332,"symbol":"__NSThread__start__","symbolLocation":720,"imageIndex":17},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":10},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":10}]},{"id":16655249,"name":"com.facebook.SocketRocket.NetworkThread","threadState":{"x":[{"value":268451845},{"value":21592279046},{"value":8589934592},{"value":183631326740480},{"value":0},{"value":183631326740480},{"value":2},{"value":4294967295},{"value":18446744073709550527},{"value":42755},{"value":0},{"value":1},{"value":42755},{"value":3072},{"value":0},{"value":3298534883328},{"value":18446744073709551569},{"value":3298534884098},{"value":0},{"value":4294967295},{"value":2},{"value":183631326740480},{"value":0},{"value":183631326740480},{"value":6130785608},{"value":8589934592},{"value":21592279046},{"value":21592279046},{"value":4412409862}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4462996352},"cpsr":{"value":4096},"fp":{"value":6130785456},"sp":{"value":6130785376},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4462925168},"far":{"value":0}},"frames":[{"imageOffset":5488,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":9},{"imageOffset":76672,"symbol":"mach_msg2_internal","symbolLocation":76,"imageIndex":9},{"imageOffset":38808,"symbol":"mach_msg_overwrite","symbolLocation":532,"imageIndex":9},{"imageOffset":6376,"symbol":"mach_msg","symbolLocation":20,"imageIndex":9},{"imageOffset":579268,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":156,"imageIndex":13},{"imageOffset":556452,"symbol":"__CFRunLoopRun","symbolLocation":1148,"imageIndex":13},{"imageOffset":554260,"symbol":"CFRunLoopRunSpecific","symbolLocation":572,"imageIndex":13},{"imageOffset":6513548,"symbol":"-[NSRunLoop(NSRunLoop) runMode:beforeDate:]","symbolLocation":208,"imageIndex":17},{"imageOffset":20161208,"sourceLine":71,"sourceFile":"SRRunLoopThread.m","symbol":"-[SRRunLoopThread main]","imageIndex":11,"symbolLocation":260},{"imageOffset":6671332,"symbol":"__NSThread__start__","symbolLocation":720,"imageIndex":17},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":10},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":10}]},{"id":16655250,"name":"com.apple.NSURLConnectionLoader","threadState":{"x":[{"value":268451845},{"value":21592279046},{"value":8589934592},{"value":180332791857152},{"value":0},{"value":180332791857152},{"value":2},{"value":4294967295},{"value":18446744073709550527},{"value":41987},{"value":0},{"value":1},{"value":41987},{"value":3072},{"value":2464155652},{"value":3},{"value":18446744073709551569},{"value":2464155652},{"value":0},{"value":4294967295},{"value":2},{"value":180332791857152},{"value":0},{"value":180332791857152},{"value":6131359064},{"value":8589934592},{"value":21592279046},{"value":21592279046},{"value":4412409862}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4462996352},"cpsr":{"value":4096},"fp":{"value":6131358912},"sp":{"value":6131358832},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4462925168},"far":{"value":0}},"frames":[{"imageOffset":5488,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":9},{"imageOffset":76672,"symbol":"mach_msg2_internal","symbolLocation":76,"imageIndex":9},{"imageOffset":38808,"symbol":"mach_msg_overwrite","symbolLocation":532,"imageIndex":9},{"imageOffset":6376,"symbol":"mach_msg","symbolLocation":20,"imageIndex":9},{"imageOffset":579268,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":156,"imageIndex":13},{"imageOffset":556452,"symbol":"__CFRunLoopRun","symbolLocation":1148,"imageIndex":13},{"imageOffset":554260,"symbol":"CFRunLoopRunSpecific","symbolLocation":572,"imageIndex":13},{"imageOffset":2198360,"imageIndex":19},{"imageOffset":6671332,"symbol":"__NSThread__start__","symbolLocation":720,"imageIndex":17},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":10},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":10}]},{"triggered":true,"id":16655254,"name":"com.facebook.react.runtime.JavaScript","threadState":{"x":[{"value":0},{"value":0},{"value":6132447838},{"value":1},{"value":0},{"value":4},{"value":1},{"value":2960},{"value":0},{"value":10327411689491136661},{"value":80},{"value":8058622169,"objc-selector":"🤯"},{"value":105545058402855},{"value":3},{"value":6442450944},{"value":9709633536},{"value":4461448224,"symbolLocation":0,"symbol":"_platform_strlen"},{"value":12},{"value":0},{"value":105553118918912},{"value":21723},{"value":21723},{"value":4559846472},{"value":0},{"value":4491240944},{"value":0},{"value":12578640},{"value":4559846472},{"value":4559846400}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4342433172},"cpsr":{"value":1610616832},"fp":{"value":6132447760},"sp":{"value":6132447744},"esr":{"value":2449473542,"description":"(Data Abort) byte read Translation fault"},"pc":{"value":4461448228,"matchesCrashFrame":1},"far":{"value":0}},"frames":[{"imageOffset":3108,"symbol":"_platform_strlen","symbolLocation":4,"imageIndex":8},{"imageOffset":34196,"sourceLine":49,"sourceFile":"constexpr_c_functions.h","symbol":"std::__1::__constexpr_strlen[abi:ue170006](char const*)","imageIndex":11,"symbolLocation":24},{"imageOffset":33956,"sourceLine":222,"sourceFile":"char_traits.h","symbol":"std::__1::char_traits::length[abi:ue170006](char const*)","imageIndex":11,"symbolLocation":24},{"imageOffset":33840,"sourceLine":940,"sourceFile":"string","symbol":"std::__1::basic_string, std::__1::allocator>::basic_string[abi:ue170006]<0>(char const*)","imageIndex":11,"symbolLocation":56},{"imageOffset":32744,"sourceLine":938,"sourceFile":"string","symbol":"std::__1::basic_string, std::__1::allocator>::basic_string[abi:ue170006]<0>(char const*)","imageIndex":11,"symbolLocation":36},{"imageOffset":18739064,"sourceLine":126,"sourceFile":"RCTInteropTurboModule.mm","symbol":"facebook::react::(anonymous namespace)::parseExportedMethods(std::__1::basic_string, std::__1::allocator>, objc_class*)","imageIndex":11,"symbolLocation":376},{"imageOffset":18736756,"sourceLine":188,"sourceFile":"RCTInteropTurboModule.mm","symbol":"facebook::react::ObjCInteropTurboModule::ObjCInteropTurboModule(facebook::react::ObjCTurboModule::InitParams const&)","imageIndex":11,"symbolLocation":176},{"imageOffset":18742992,"sourceLine":187,"sourceFile":"RCTInteropTurboModule.mm","symbol":"facebook::react::ObjCInteropTurboModule::ObjCInteropTurboModule(facebook::react::ObjCTurboModule::InitParams const&)","imageIndex":11,"symbolLocation":36},{"imageOffset":18953216,"sourceLine":41,"sourceFile":"construct_at.h","symbol":"facebook::react::ObjCInteropTurboModule* std::__1::construct_at[abi:ue170006](facebook::react::ObjCInteropTurboModule*, facebook::react::ObjCTurboModule::InitParams&)","imageIndex":11,"symbolLocation":44},{"imageOffset":18952736,"sourceLine":304,"sourceFile":"allocator_traits.h","symbol":"void std::__1::allocator_traits>::construct[abi:ue170006](std::__1::allocator&, facebook::react::ObjCInteropTurboModule*, facebook::react::ObjCTurboModule::InitParams&)","imageIndex":11,"symbolLocation":36},{"imageOffset":18952524,"sourceLine":300,"sourceFile":"shared_ptr.h","symbol":"std::__1::__shared_ptr_emplace>::__shared_ptr_emplace[abi:ue170006](std::__1::allocator, facebook::react::ObjCTurboModule::InitParams&)","imageIndex":11,"symbolLocation":116},{"imageOffset":18951732,"sourceLine":292,"sourceFile":"shared_ptr.h","symbol":"std::__1::__shared_ptr_emplace>::__shared_ptr_emplace[abi:ue170006](std::__1::allocator, facebook::react::ObjCTurboModule::InitParams&)","imageIndex":11,"symbolLocation":36},{"imageOffset":18951484,"sourceLine":1023,"sourceFile":"shared_ptr.h","symbol":"std::__1::shared_ptr std::__1::allocate_shared[abi:ue170006], facebook::react::ObjCTurboModule::InitParams&, void>(std::__1::allocator const&, facebook::react::ObjCTurboModule::InitParams&)","imageIndex":11,"symbolLocation":60},{"imageOffset":18917536,"sourceLine":1032,"sourceFile":"shared_ptr.h","symbol":"std::__1::shared_ptr std::__1::make_shared[abi:ue170006](facebook::react::ObjCTurboModule::InitParams&)","imageIndex":11,"symbolLocation":52},{"imageOffset":18916892,"sourceLine":463,"sourceFile":"RCTTurboModuleManager.mm","symbol":"-[RCTTurboModuleManager provideLegacyModule:]","imageIndex":11,"symbolLocation":1184},{"imageOffset":18975760,"sourceLine":951,"sourceFile":"RCTTurboModuleManager.mm","symbol":"-[RCTTurboModuleManager installJSBindings:]::$_1::operator()(std::__1::basic_string, std::__1::allocator> const&) const","imageIndex":11,"symbolLocation":128},{"imageOffset":18975620,"sourceLine":340,"sourceFile":"invoke.h","symbol":"decltype(std::declval<-[RCTTurboModuleManager installJSBindings:]::$_1&>()(std::declval, std::__1::allocator> const&>())) std::__1::__invoke[abi:ue170006]<-[RCTTurboModuleManager installJSBindings:]::$_1&, std::__1::basic_string, std::__1::allocator> const&>(-[RCTTurboModuleManager installJSBindings:]::$_1&, std::__1::basic_string, std::__1::allocator> const&)","imageIndex":11,"symbolLocation":40},{"imageOffset":18975532,"sourceLine":407,"sourceFile":"invoke.h","symbol":"std::__1::shared_ptr std::__1::__invoke_void_return_wrapper, false>::__call[abi:ue170006]<-[RCTTurboModuleManager installJSBindings:]::$_1&, std::__1::basic_string, std::__1::allocator> const&>(-[RCTTurboModuleManager installJSBindings:]::$_1&, std::__1::basic_string, std::__1::allocator> const&)","imageIndex":11,"symbolLocation":40},{"imageOffset":18975480,"sourceLine":193,"sourceFile":"function.h","symbol":"std::__1::__function::__alloc_func<-[RCTTurboModuleManager installJSBindings:]::$_1, std::__1::allocator<-[RCTTurboModuleManager installJSBindings:]::$_1>, std::__1::shared_ptr (std::__1::basic_string, std::__1::allocator> const&)>::operator()[abi:ue170006](std::__1::basic_string, std::__1::allocator> const&)","imageIndex":11,"symbolLocation":48},{"imageOffset":18970536,"sourceLine":364,"sourceFile":"function.h","symbol":"std::__1::__function::__func<-[RCTTurboModuleManager installJSBindings:]::$_1, std::__1::allocator<-[RCTTurboModuleManager installJSBindings:]::$_1>, std::__1::shared_ptr (std::__1::basic_string, std::__1::allocator> const&)>::operator()(std::__1::basic_string, std::__1::allocator> const&)","imageIndex":11,"symbolLocation":44},{"imageOffset":15420608,"sourceLine":518,"sourceFile":"function.h","symbol":"std::__1::__function::__value_func (std::__1::basic_string, std::__1::allocator> const&)>::operator()[abi:ue170006](std::__1::basic_string, std::__1::allocator> const&) const","imageIndex":11,"symbolLocation":88},{"imageOffset":15405420,"sourceLine":1169,"sourceFile":"function.h","symbol":"std::__1::function (std::__1::basic_string, std::__1::allocator> const&)>::operator()(std::__1::basic_string, std::__1::allocator> const&) const","imageIndex":11,"symbolLocation":40},{"imageOffset":15404668,"sourceLine":133,"sourceFile":"TurboModuleBinding.cpp","symbol":"facebook::react::TurboModuleBinding::getModule(facebook::jsi::Runtime&, std::__1::basic_string, std::__1::allocator> const&) const","imageIndex":11,"symbolLocation":100},{"imageOffset":15418764,"sourceLine":46,"sourceFile":"TurboModuleBinding.cpp","symbol":"facebook::react::BridgelessNativeModuleProxy::get(facebook::jsi::Runtime&, facebook::jsi::PropNameID const&)","imageIndex":11,"symbolLocation":196},{"imageOffset":11741972,"sourceLine":70,"sourceFile":"decorator.h","symbol":"facebook::jsi::DecoratedHostObject::get(facebook::jsi::Runtime&, facebook::jsi::PropNameID const&)","imageIndex":11,"symbolLocation":92},{"imageOffset":75500,"symbol":"facebook::hermes::HermesRuntimeImpl::JsiProxy::get(hermes::vm::SymbolID)","symbolLocation":84,"imageIndex":7},{"imageOffset":749672,"symbol":"hermes::vm::JSObject::getNamedWithReceiver_RJS(hermes::vm::Handle, hermes::vm::Runtime&, hermes::vm::SymbolID, hermes::vm::Handle, hermes::vm::PropOpFlags, hermes::vm::PropertyCacheEntry*)","symbolLocation":692,"imageIndex":7},{"imageOffset":654428,"symbol":"hermes::vm::CallResult hermes::vm::Interpreter::interpretFunction(hermes::vm::Runtime&, hermes::vm::InterpreterState&)","symbolLocation":10724,"imageIndex":7},{"imageOffset":643652,"symbol":"hermes::vm::Runtime::interpretFunctionImpl(hermes::vm::CodeBlock*)","symbolLocation":132,"imageIndex":7},{"imageOffset":539760,"symbol":"hermes::vm::JSFunction::_callImpl(hermes::vm::Handle, hermes::vm::Runtime&)","symbolLocation":40,"imageIndex":7},{"imageOffset":531580,"symbol":"hermes::vm::Callable::executeCall0(hermes::vm::Handle, hermes::vm::Runtime&, hermes::vm::Handle, bool)","symbolLocation":176,"imageIndex":7},{"imageOffset":750740,"symbol":"hermes::vm::JSObject::getComputedWithReceiver_RJS(hermes::vm::Handle, hermes::vm::Runtime&, hermes::vm::Handle, hermes::vm::Handle)","symbolLocation":628,"imageIndex":7},{"imageOffset":655764,"symbol":"hermes::vm::CallResult hermes::vm::Interpreter::interpretFunction(hermes::vm::Runtime&, hermes::vm::InterpreterState&)","symbolLocation":12060,"imageIndex":7},{"imageOffset":643652,"symbol":"hermes::vm::Runtime::interpretFunctionImpl(hermes::vm::CodeBlock*)","symbolLocation":132,"imageIndex":7},{"imageOffset":539760,"symbol":"hermes::vm::JSFunction::_callImpl(hermes::vm::Handle, hermes::vm::Runtime&)","symbolLocation":40,"imageIndex":7},{"imageOffset":537840,"symbol":"hermes::vm::BoundFunction::_boundCall(hermes::vm::BoundFunction*, hermes::inst::Inst const*, hermes::vm::Runtime&)","symbolLocation":584,"imageIndex":7},{"imageOffset":45980,"symbol":"facebook::hermes::HermesRuntimeImpl::call(facebook::jsi::Function const&, facebook::jsi::Value const&, facebook::jsi::Value const*, unsigned long)","symbolLocation":724,"imageIndex":7},{"imageOffset":11738844,"sourceLine":347,"sourceFile":"decorator.h","symbol":"facebook::jsi::RuntimeDecorator::call(facebook::jsi::Function const&, facebook::jsi::Value const&, facebook::jsi::Value const*, unsigned long)","imageIndex":11,"symbolLocation":76},{"imageOffset":3470292,"sourceLine":264,"sourceFile":"jsi-inl.h","symbol":"facebook::jsi::Function::call(facebook::jsi::Runtime&, facebook::jsi::Value const*, unsigned long) const","imageIndex":11,"symbolLocation":100},{"imageOffset":3470180,"sourceLine":269,"sourceFile":"jsi-inl.h","symbol":"facebook::jsi::Function::call(facebook::jsi::Runtime&, std::initializer_list) const","imageIndex":11,"symbolLocation":112},{"imageOffset":19711404,"sourceLine":45,"sourceFile":"Task.cpp","symbol":"facebook::react::Task::execute(facebook::jsi::Runtime&, bool)","imageIndex":11,"symbolLocation":296},{"imageOffset":19615332,"sourceLine":330,"sourceFile":"RuntimeScheduler_Modern.cpp","symbol":"facebook::react::RuntimeScheduler_Modern::executeMacrotask(facebook::jsi::Runtime&, facebook::react::Task&, bool) const","imageIndex":11,"symbolLocation":76},{"imageOffset":19615072,"sourceLine":291,"sourceFile":"RuntimeScheduler_Modern.cpp","symbol":"facebook::react::RuntimeScheduler_Modern::executeTask(facebook::jsi::Runtime&, facebook::react::Task&, std::__1::chrono::time_point>>)","imageIndex":11,"symbolLocation":204},{"imageOffset":19613936,"sourceLine":242,"sourceFile":"RuntimeScheduler_Modern.cpp","symbol":"facebook::react::RuntimeScheduler_Modern::startWorkLoop(facebook::jsi::Runtime&, bool)","imageIndex":11,"symbolLocation":224},{"imageOffset":19638864,"sourceLine":222,"sourceFile":"RuntimeScheduler_Modern.cpp","symbol":"facebook::react::RuntimeScheduler_Modern::scheduleWorkLoop()::$_1::operator()(facebook::jsi::Runtime&) const","imageIndex":11,"symbolLocation":44},{"imageOffset":19638808,"sourceLine":340,"sourceFile":"invoke.h","symbol":"decltype(std::declval()(std::declval())) std::__1::__invoke[abi:ue170006](facebook::react::RuntimeScheduler_Modern::scheduleWorkLoop()::$_1&, facebook::jsi::Runtime&)","imageIndex":11,"symbolLocation":32},{"imageOffset":19638728,"sourceLine":415,"sourceFile":"invoke.h","symbol":"void std::__1::__invoke_void_return_wrapper::__call[abi:ue170006](facebook::react::RuntimeScheduler_Modern::scheduleWorkLoop()::$_1&, facebook::jsi::Runtime&)","imageIndex":11,"symbolLocation":32},{"imageOffset":19638684,"sourceLine":193,"sourceFile":"function.h","symbol":"std::__1::__function::__alloc_func, void (facebook::jsi::Runtime&)>::operator()[abi:ue170006](facebook::jsi::Runtime&)","imageIndex":11,"symbolLocation":36},{"imageOffset":19634200,"sourceLine":364,"sourceFile":"function.h","symbol":"std::__1::__function::__func, void (facebook::jsi::Runtime&)>::operator()(facebook::jsi::Runtime&)","imageIndex":11,"symbolLocation":36},{"imageOffset":3577332,"sourceLine":518,"sourceFile":"function.h","symbol":"std::__1::__function::__value_func::operator()[abi:ue170006](facebook::jsi::Runtime&) const","imageIndex":11,"symbolLocation":76},{"imageOffset":3576384,"sourceLine":1169,"sourceFile":"function.h","symbol":"std::__1::function::operator()(facebook::jsi::Runtime&) const","imageIndex":11,"symbolLocation":32},{"imageOffset":19268136,"sourceLine":70,"sourceFile":"ReactInstance.cpp","symbol":"facebook::react::ReactInstance::ReactInstance(std::__1::unique_ptr>, std::__1::shared_ptr, std::__1::shared_ptr, std::__1::function, facebook::react::jsinspector_modern::PageTarget*)::$_0::operator()(std::__1::function&&) const::'lambda'()::operator()() const","imageIndex":11,"symbolLocation":112},{"imageOffset":19268012,"sourceLine":340,"sourceFile":"invoke.h","symbol":"decltype(std::declval>, std::__1::shared_ptr, std::__1::shared_ptr, std::__1::function, facebook::react::jsinspector_modern::PageTarget*)::$_0::operator()(std::__1::function&&) const::'lambda'()&>()()) std::__1::__invoke[abi:ue170006]>, std::__1::shared_ptr, std::__1::shared_ptr, std::__1::function, facebook::react::jsinspector_modern::PageTarget*)::$_0::operator()(std::__1::function&&) const::'lambda'()&>(facebook::react::ReactInstance::ReactInstance(std::__1::unique_ptr>, std::__1::shared_ptr, std::__1::shared_ptr, std::__1::function, facebook::react::jsinspector_modern::PageTarget*)::$_0::operator()(std::__1::function&&) const::'lambda'()&)","imageIndex":11,"symbolLocation":24},{"imageOffset":19267940,"sourceLine":415,"sourceFile":"invoke.h","symbol":"void std::__1::__invoke_void_return_wrapper::__call[abi:ue170006]>, std::__1::shared_ptr, std::__1::shared_ptr, std::__1::function, facebook::react::jsinspector_modern::PageTarget*)::$_0::operator()(std::__1::function&&) const::'lambda'()&>(facebook::react::ReactInstance::ReactInstance(std::__1::unique_ptr>, std::__1::shared_ptr, std::__1::shared_ptr, std::__1::function, facebook::react::jsinspector_modern::PageTarget*)::$_0::operator()(std::__1::function&&) const::'lambda'()&)","imageIndex":11,"symbolLocation":24},{"imageOffset":19267904,"sourceLine":193,"sourceFile":"function.h","symbol":"std::__1::__function::__alloc_func>, std::__1::shared_ptr, std::__1::shared_ptr, std::__1::function, facebook::react::jsinspector_modern::PageTarget*)::$_0::operator()(std::__1::function&&) const::'lambda'(), std::__1::allocator>, std::__1::shared_ptr, std::__1::shared_ptr, std::__1::function, facebook::react::jsinspector_modern::PageTarget*)::$_0::operator()(std::__1::function&&) const::'lambda'()>, void ()>::operator()[abi:ue170006]()","imageIndex":11,"symbolLocation":28},{"imageOffset":19263128,"sourceLine":364,"sourceFile":"function.h","symbol":"std::__1::__function::__func>, std::__1::shared_ptr, std::__1::shared_ptr, std::__1::function, facebook::react::jsinspector_modern::PageTarget*)::$_0::operator()(std::__1::function&&) const::'lambda'(), std::__1::allocator>, std::__1::shared_ptr, std::__1::shared_ptr, std::__1::function, facebook::react::jsinspector_modern::PageTarget*)::$_0::operator()(std::__1::function&&) const::'lambda'()>, void ()>::operator()()","imageIndex":11,"symbolLocation":28},{"imageOffset":3472956,"sourceLine":518,"sourceFile":"function.h","symbol":"std::__1::__function::__value_func::operator()[abi:ue170006]() const","imageIndex":11,"symbolLocation":68},{"imageOffset":3472876,"sourceLine":1169,"sourceFile":"function.h","symbol":"std::__1::function::operator()() const","imageIndex":11,"symbolLocation":24},{"imageOffset":14572068,"sourceLine":73,"sourceFile":"RCTCxxUtils.mm","symbol":"facebook::react::tryAndReturnError(std::__1::function const&)","imageIndex":11,"symbolLocation":24},{"imageOffset":14740388,"sourceLine":68,"sourceFile":"RCTMessageThread.mm","symbol":"facebook::react::RCTMessageThread::tryFunc(std::__1::function const&)","imageIndex":11,"symbolLocation":36},{"imageOffset":14759500,"sourceLine":81,"sourceFile":"RCTMessageThread.mm","symbol":"facebook::react::RCTMessageThread::runOnQueue(std::__1::function&&)::$_1::operator()() const","imageIndex":11,"symbolLocation":80},{"imageOffset":14759408,"sourceLine":340,"sourceFile":"invoke.h","symbol":"decltype(std::declval&&)::$_1&>()()) std::__1::__invoke[abi:ue170006]&&)::$_1&>(facebook::react::RCTMessageThread::runOnQueue(std::__1::function&&)::$_1&)","imageIndex":11,"symbolLocation":24},{"imageOffset":14759336,"sourceLine":415,"sourceFile":"invoke.h","symbol":"void std::__1::__invoke_void_return_wrapper::__call[abi:ue170006]&&)::$_1&>(facebook::react::RCTMessageThread::runOnQueue(std::__1::function&&)::$_1&)","imageIndex":11,"symbolLocation":24},{"imageOffset":14759300,"sourceLine":193,"sourceFile":"function.h","symbol":"std::__1::__function::__alloc_func&&)::$_1, std::__1::allocator&&)::$_1>, void ()>::operator()[abi:ue170006]()","imageIndex":11,"symbolLocation":28},{"imageOffset":14754452,"sourceLine":364,"sourceFile":"function.h","symbol":"std::__1::__function::__func&&)::$_1, std::__1::allocator&&)::$_1>, void ()>::operator()()","imageIndex":11,"symbolLocation":28},{"imageOffset":3472956,"sourceLine":518,"sourceFile":"function.h","symbol":"std::__1::__function::__value_func::operator()[abi:ue170006]() const","imageIndex":11,"symbolLocation":68},{"imageOffset":3472876,"sourceLine":1169,"sourceFile":"function.h","symbol":"std::__1::function::operator()() const","imageIndex":11,"symbolLocation":24},{"imageOffset":14739816,"sourceLine":44,"sourceFile":"RCTMessageThread.mm","symbol":"invocation function for block in facebook::react::RCTMessageThread::runAsync(std::__1::function)","imageIndex":11,"symbolLocation":48},{"imageOffset":580688,"symbol":"__CFRUNLOOP_IS_CALLING_OUT_TO_A_BLOCK__","symbolLocation":20,"imageIndex":13},{"imageOffset":578456,"symbol":"__CFRunLoopDoBlocks","symbolLocation":352,"imageIndex":13},{"imageOffset":557668,"symbol":"__CFRunLoopRun","symbolLocation":2364,"imageIndex":13},{"imageOffset":554260,"symbol":"CFRunLoopRunSpecific","symbolLocation":572,"imageIndex":13},{"imageOffset":19171732,"sourceLine":102,"sourceFile":"RCTJSThreadManager.mm","symbol":"+[RCTJSThreadManager runRunLoop]","imageIndex":11,"symbolLocation":292},{"imageOffset":6671332,"symbol":"__NSThread__start__","symbolLocation":720,"imageIndex":17},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":10},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":10}]},{"id":16655255,"name":"com.apple.CFSocket.private","threadState":{"x":[{"value":4},{"value":0},{"value":105553116356016},{"value":0},{"value":0},{"value":0},{"value":5},{"value":0},{"value":6133035232},{"value":0},{"value":105553181356544},{"value":15},{"value":4},{"value":105553181356592},{"value":72057602293671329,"symbolLocation":72057594037927937,"symbol":"OBJC_CLASS_$___NSCFArray"},{"value":8255743392,"symbolLocation":0,"symbol":"OBJC_CLASS_$___NSCFArray"},{"value":93},{"value":6446612980,"symbolLocation":0,"symbol":"-[__NSCFArray objectAtIndex:]"},{"value":0},{"value":32},{"value":8255765512,"symbolLocation":0,"symbol":"__CFActiveSocketsLock"},{"value":1},{"value":4667821904},{"value":12},{"value":105553116356016},{"value":105553116356032},{"value":0},{"value":8129048896,"symbolLocation":0,"symbol":"__kCFNull"},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":6446764204},"cpsr":{"value":1610616832},"fp":{"value":6133034944},"sp":{"value":6133001168},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4462967564},"far":{"value":0}},"frames":[{"imageOffset":47884,"symbol":"__select","symbolLocation":8,"imageIndex":9},{"imageOffset":639148,"symbol":"__CFSocketManager","symbolLocation":612,"imageIndex":13},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":10},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":10}]},{"id":16655256,"name":"hades","threadState":{"x":[{"value":260},{"value":0},{"value":256},{"value":0},{"value":0},{"value":160},{"value":0},{"value":0},{"value":6133608104},{"value":0},{"value":105553171908872},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":129024},{"value":0},{"value":105553171908848},{"value":105553171908912},{"value":6133608672},{"value":0},{"value":0},{"value":256},{"value":257},{"value":512},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4477663692},"cpsr":{"value":1610616832},"fp":{"value":6133608224},"sp":{"value":6133608080},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4462938736},"far":{"value":0}},"frames":[{"imageOffset":19056,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":9},{"imageOffset":31180,"symbol":"_pthread_cond_wait","symbolLocation":1216,"imageIndex":10},{"imageOffset":67288,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lock&)","symbolLocation":24,"imageIndex":20},{"imageOffset":1467464,"symbol":"hermes::vm::HadesGC::Executor::worker()","symbolLocation":112,"imageIndex":7},{"imageOffset":1467308,"symbol":"void* std::__1::__thread_proxy[abi:v160006]>, hermes::vm::HadesGC::Executor::Executor()::'lambda'()>>(void*)","symbolLocation":44,"imageIndex":7},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":10},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":10}]},{"id":16655291,"name":"com.apple.CFStream.LegacyThread","threadState":{"x":[{"value":268451845},{"value":21592279046},{"value":8589934592},{"value":189128884879360},{"value":0},{"value":189128884879360},{"value":2},{"value":4294967295},{"value":18446744073709550527},{"value":44035},{"value":0},{"value":1},{"value":44035},{"value":3072},{"value":0},{"value":137438953472000},{"value":18446744073709551569},{"value":137438953504002},{"value":0},{"value":4294967295},{"value":2},{"value":189128884879360},{"value":0},{"value":189128884879360},{"value":6134177784},{"value":8589934592},{"value":21592279046},{"value":21592279046},{"value":4412409862}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4462996352},"cpsr":{"value":4096},"fp":{"value":6134177632},"sp":{"value":6134177552},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4462925168},"far":{"value":0}},"frames":[{"imageOffset":5488,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":9},{"imageOffset":76672,"symbol":"mach_msg2_internal","symbolLocation":76,"imageIndex":9},{"imageOffset":38808,"symbol":"mach_msg_overwrite","symbolLocation":532,"imageIndex":9},{"imageOffset":6376,"symbol":"mach_msg","symbolLocation":20,"imageIndex":9},{"imageOffset":579268,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":156,"imageIndex":13},{"imageOffset":556452,"symbol":"__CFRunLoopRun","symbolLocation":1148,"imageIndex":13},{"imageOffset":554260,"symbol":"CFRunLoopRunSpecific","symbolLocation":572,"imageIndex":13},{"imageOffset":699840,"symbol":"_legacyStreamRunLoop_workThread","symbolLocation":260,"imageIndex":13},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":10},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":10}]},{"id":16655680,"name":"hades","threadState":{"x":[{"value":260},{"value":0},{"value":0},{"value":0},{"value":0},{"value":160},{"value":0},{"value":0},{"value":6126186152},{"value":0},{"value":105553171853192},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":0},{"value":0},{"value":105553171853168},{"value":105553171853232},{"value":6126186720},{"value":0},{"value":0},{"value":0},{"value":1},{"value":256},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4477663692},"cpsr":{"value":1610616832},"fp":{"value":6126186272},"sp":{"value":6126186128},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4462938736},"far":{"value":0}},"frames":[{"imageOffset":19056,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":9},{"imageOffset":31180,"symbol":"_pthread_cond_wait","symbolLocation":1216,"imageIndex":10},{"imageOffset":67288,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lock&)","symbolLocation":24,"imageIndex":20},{"imageOffset":1467464,"symbol":"hermes::vm::HadesGC::Executor::worker()","symbolLocation":112,"imageIndex":7},{"imageOffset":1467308,"symbol":"void* std::__1::__thread_proxy[abi:v160006]>, hermes::vm::HadesGC::Executor::Executor()::'lambda'()>>(void*)","symbolLocation":44,"imageIndex":7},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":10},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":10}]}], "usedImages" : [ { "source" : "P", "arch" : "arm64e", "base" : 4464033792, "size" : 573440, "uuid" : "37bbc384-0755-31c7-a808-0ed49e44dd8e", "path" : "\/usr\/lib\/dyld", "name" : "dyld" }, { "source" : "P", "arch" : "arm64", "base" : 4465344512, "size" : 49152, "uuid" : "cd1bd3cb-1477-3dca-8afc-cff937b3025d", "path" : "\/Volumes\/VOLUME\/*\/libobjc-trampolines.dylib", "name" : "libobjc-trampolines.dylib" }, { "source" : "P", "arch" : "arm64", "base" : 4461576192, "CFBundleShortVersionString" : "0.0.2", "CFBundleIdentifier" : "live.100ms.HMS.Analytics", "size" : 32768, "uuid" : "8dfd1681-5c7b-3d3b-9e36-3507813dcc3a", "path" : "\/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/F2DAB3E6-B36F-4938-A648-C9D838228E39\/data\/Containers\/Bundle\/Application\/DE6CAFFC-853D-4D39-A28E-095E50C3AC48\/PatientDev.app\/Frameworks\/HMSAnalyticsSDK.framework\/HMSAnalyticsSDK", "name" : "HMSAnalyticsSDK", "CFBundleVersion" : "1" }, { "source" : "P", "arch" : "arm64", "base" : 4461903872, "CFBundleShortVersionString" : "0.0.9", "CFBundleIdentifier" : "live.100ms.HMS.ScreenShare", "size" : 98304, "uuid" : "a9b1a2e7-9588-3086-999f-2f4213ea1317", "path" : "\/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/F2DAB3E6-B36F-4938-A648-C9D838228E39\/data\/Containers\/Bundle\/Application\/DE6CAFFC-853D-4D39-A28E-095E50C3AC48\/PatientDev.app\/Frameworks\/HMSBroadcastExtensionSDK.framework\/HMSBroadcastExtensionSDK", "name" : "HMSBroadcastExtensionSDK", "CFBundleVersion" : "14" }, { "source" : "P", "arch" : "arm64", "base" : 4462100480, "CFBundleShortVersionString" : "0.0.2", "CFBundleIdentifier" : "live.100ms.HMS.HLSPlayer", "size" : 81920, "uuid" : "ccd0fa8b-8759-3bda-9d07-c52f7d331824", "path" : "\/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/F2DAB3E6-B36F-4938-A648-C9D838228E39\/data\/Containers\/Bundle\/Application\/DE6CAFFC-853D-4D39-A28E-095E50C3AC48\/PatientDev.app\/Frameworks\/HMSHLSPlayerSDK.framework\/HMSHLSPlayerSDK", "name" : "HMSHLSPlayerSDK", "CFBundleVersion" : "1" }, { "source" : "P", "arch" : "arm64", "base" : 4482088960, "CFBundleShortVersionString" : "1.15.0", "CFBundleIdentifier" : "live.100ms.HMS", "size" : 3145728, "uuid" : "187f375b-7e1b-3d32-b427-2cbf781c8c0d", "path" : "\/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/F2DAB3E6-B36F-4938-A648-C9D838228E39\/data\/Containers\/Bundle\/Application\/DE6CAFFC-853D-4D39-A28E-095E50C3AC48\/PatientDev.app\/Frameworks\/HMSSDK.framework\/HMSSDK", "name" : "HMSSDK", "CFBundleVersion" : "13" }, { "source" : "P", "arch" : "arm64", "base" : 4497293312, "CFBundleShortVersionString" : "1.0", "CFBundleIdentifier" : "org.webrtc.WebRTC", "size" : 9961472, "uuid" : "4c4c4400-5555-3144-a1d3-6cc12c1cc819", "path" : "\/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/F2DAB3E6-B36F-4938-A648-C9D838228E39\/data\/Containers\/Bundle\/Application\/DE6CAFFC-853D-4D39-A28E-095E50C3AC48\/PatientDev.app\/Frameworks\/WebRTC.framework\/WebRTC", "name" : "WebRTC", "CFBundleVersion" : "1.0.0" }, { "source" : "P", "arch" : "arm64", "base" : 4508368896, "CFBundleShortVersionString" : "0.12.0", "CFBundleIdentifier" : "dev.hermesengine.iphonesimulator", "size" : 3178496, "uuid" : "04b8008c-a953-336f-8043-1540012d2df6", "path" : "\/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/F2DAB3E6-B36F-4938-A648-C9D838228E39\/data\/Containers\/Bundle\/Application\/DE6CAFFC-853D-4D39-A28E-095E50C3AC48\/PatientDev.app\/Frameworks\/hermes.framework\/hermes", "name" : "hermes", "CFBundleVersion" : "0.12.0" }, { "source" : "P", "arch" : "arm64", "base" : 4461445120, "size" : 32768, "uuid" : "b7159952-fab4-38ce-a131-446d54c54afc", "path" : "\/usr\/lib\/system\/libsystem_platform.dylib", "name" : "libsystem_platform.dylib" }, { "source" : "P", "arch" : "arm64", "base" : 4462919680, "size" : 245760, "uuid" : "0c657561-0a7d-344e-838f-109a718679cf", "path" : "\/usr\/lib\/system\/libsystem_kernel.dylib", "name" : "libsystem_kernel.dylib" }, { "source" : "P", "arch" : "arm64", "base" : 4477632512, "size" : 65536, "uuid" : "f0346f94-d1b1-311f-9ac1-aa8107c597ad", "path" : "\/usr\/lib\/system\/libsystem_pthread.dylib", "name" : "libsystem_pthread.dylib" }, { "source" : "P", "arch" : "arm64", "base" : 4342398976, "CFBundleShortVersionString" : "1.0.0", "CFBundleIdentifier" : "com.hellowellness.patient.dev", "size" : 42582016, "uuid" : "465f2b92-20e3-3f99-87e1-68d89b530df9", "path" : "\/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/F2DAB3E6-B36F-4938-A648-C9D838228E39\/data\/Containers\/Bundle\/Application\/DE6CAFFC-853D-4D39-A28E-095E50C3AC48\/PatientDev.app\/PatientDev", "name" : "PatientDev", "CFBundleVersion" : "1" }, { "source" : "P", "arch" : "arm64", "base" : 4462346240, "size" : 311296, "uuid" : "496faa0c-90ce-3140-9e23-1f02a673b817", "path" : "\/Volumes\/VOLUME\/*\/dyld_sim", "name" : "dyld_sim" }, { "source" : "P", "arch" : "arm64", "base" : 6446125056, "CFBundleShortVersionString" : "6.9", "CFBundleIdentifier" : "com.apple.CoreFoundation", "size" : 3883008, "uuid" : "7d1f50b3-ed7d-3987-bced-ad6779b49c86", "path" : "\/Volumes\/VOLUME\/*\/CoreFoundation.framework\/CoreFoundation", "name" : "CoreFoundation", "CFBundleVersion" : "2420" }, { "source" : "P", "arch" : "arm64", "base" : 6693072896, "CFBundleShortVersionString" : "1.0", "CFBundleIdentifier" : "com.apple.GraphicsServices", "size" : 36864, "uuid" : "4a4b088d-4b30-3333-87b4-a40533ac5580", "path" : "\/Volumes\/VOLUME\/*\/GraphicsServices.framework\/GraphicsServices", "name" : "GraphicsServices", "CFBundleVersion" : "1.0" }, { "source" : "P", "arch" : "arm64", "base" : 6517919744, "CFBundleShortVersionString" : "1.0", "CFBundleIdentifier" : "com.apple.UIKitCore", "size" : 26869760, "uuid" : "5354928b-4688-337f-b9fc-835aa5aa3543", "path" : "\/Volumes\/VOLUME\/*\/UIKitCore.framework\/UIKitCore", "name" : "UIKitCore", "CFBundleVersion" : "7439.1.106" }, { "size" : 0, "source" : "A", "base" : 0, "uuid" : "00000000-0000-0000-0000-000000000000" }, { "source" : "P", "arch" : "arm64", "base" : 6450528256, "CFBundleShortVersionString" : "6.9", "CFBundleIdentifier" : "com.apple.Foundation", "size" : 11304960, "uuid" : "0480a70b-2076-3964-b6e5-3c8d92b1d9dc", "path" : "\/Volumes\/VOLUME\/*\/Foundation.framework\/Foundation", "name" : "Foundation", "CFBundleVersion" : "2420" }, { "source" : "P", "arch" : "arm64", "base" : 6443425792, "size" : 16381, "uuid" : "1b7f0e87-abc6-30a5-800a-49260237e5c8", "path" : "\/Volumes\/VOLUME\/*\/libsystem_blocks.dylib", "name" : "libsystem_blocks.dylib" }, { "source" : "P", "arch" : "arm64", "base" : 6512869376, "CFBundleShortVersionString" : "1.0", "CFBundleIdentifier" : "com.apple.CFNetwork", "size" : 3747840, "uuid" : "98afd9b7-9e45-3c02-a8d8-b3118d48efdf", "path" : "\/Volumes\/VOLUME\/*\/CFNetwork.framework\/CFNetwork", "name" : "CFNetwork", "CFBundleVersion" : "1494.0.7" }, { "source" : "P", "arch" : "arm64", "base" : 6445441024, "size" : 532480, "uuid" : "df3f2e78-a676-3e41-88e0-69f3dc6972c8", "path" : "\/Volumes\/VOLUME\/*\/libc++.1.dylib", "name" : "libc++.1.dylib" } ], "sharedCache" : { "base" : 6442450944, "size" : 3267182592, "uuid" : "682f95ad-b14d-30e8-aaf8-b618d77a5de1" }, "vmSummary" : "ReadOnly portion of Libraries: Total=1.8G resident=0K(0%) swapped_out_or_unallocated=1.8G(100%)\nWritable regions: Total=843.0M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=843.0M(100%)\n\n VIRTUAL REGION \nREGION TYPE SIZE COUNT (non-coalesced) \n=========== ======= ======= \nActivity Tracing 256K 1 \nColorSync 144K 5 \nCoreAnimation 240K 3 \nFoundation 16K 1 \nIOSurface 13.7M 2 \nKernel Alloc Once 32K 1 \nMALLOC 771.4M 797 \nMALLOC guard page 256K 16 \nMach message 16K 1 \nSQLite page cache 384K 3 \nSTACK GUARD 56.2M 16 \nStack 16.5M 17 \nVM_ALLOCATE 38.7M 36 \n__DATA 33.5M 904 \n__DATA_CONST 91.8M 924 \n__DATA_DIRTY 107K 11 \n__FONT_DATA 4K 1 \n__LINKEDIT 866.0M 14 \n__OBJC_RO 72.5M 1 \n__OBJC_RW 2509K 1 \n__TEXT 932.1M 937 \ndyld private memory 3.1G 17 \nmapped file 43.5M 100 \nshared memory 16K 1 \n=========== ======= ======= \nTOTAL 6.0G 3810 \n", "legacyInfo" : { "threadTriggered" : { "name" : "com.facebook.react.runtime.JavaScript" } }, "logWritingSignature" : "76c2524dd062899bd89cce89f44a551c7123649a", "trialInfo" : { "rollouts" : [ { "rolloutId" : "64628732bf2f5257dedc8988", "factorPackIds" : { }, "deploymentId" : 240000001 }, { "rolloutId" : "64c025b28b7f0e739e4fbe58", "factorPackIds" : { }, "deploymentId" : 240000019 } ], "experiments" : [ { "treatmentId" : "c47ab4cc-c9c3-4b5d-a87c-e2433ce02597", "experimentId" : "6639bc6ba73d460582162323", "deploymentId" : 400000006 }, { "treatmentId" : "45f4e2a5-551b-4bc2-a2dc-19c244dda8f8", "experimentId" : "6643969b3099cf28e049862f", "deploymentId" : 400000007 } ] } } Model: MacBookPro18,3, BootROM 10151.121.1, proc 8:6:2 processors, 16 GB, SMC Graphics: Apple M1 Pro, Apple M1 Pro, Built-In Display: S22B300, 1600 x 900, Main, MirrorOff, Online Display: Color LCD, 3024 x 1964 Retina, MirrorOff, Online Memory Module: LPDDR5, Samsung AirPort: spairport_wireless_card_type_wifi (0x14E4, 0x4387), wl0: Apr 4 2024 20:37:43 version 20.103.14.0.8.7.174 FWID 01-95f1e684 AirPort: Bluetooth: Version (null), 0 services, 0 devices, 0 incoming serial ports Network Service: Wi-Fi, AirPort, en0 USB Device: USB31Bus USB Device: USB31Bus USB Device: USB31Bus Thunderbolt Bus: MacBook Pro, Apple Inc. Thunderbolt Bus: MacBook Pro, Apple Inc. Thunderbolt Bus: MacBook Pro, Apple Inc. ```

Code example, screenshot, or link to a repository

Code sample ```ts import { HMSAudioTrackSettings, HMSLogAlarmManager, HMSLogLevel, HMSLogSettings, HMSSDK, HMSTrackSettings, HMSTrackSettingsInitState, HMSVideoTrackSettings, } from "@100mslive/react-native-hms"; import { CameraType, useCameraPermissions, useMicrophonePermissions, } from "expo-camera"; import { Stack } from "expo-router"; import { useEffect, useState } from "react"; import { Text } from "react-native"; import { SafeAreaView } from "react-native-safe-area-context"; import { Button } from "~/components/ui/button"; export default function CallLayout() { const [facing, setFacing] = useState("back"); const [mic, requestMic] = useMicrophonePermissions(); const [cam, requestCam] = useCameraPermissions(); useEffect(() => { const getTrackSettings = () => { const audioSettings = new HMSAudioTrackSettings({ initialState: HMSTrackSettingsInitState.UNMUTED, }); const videoSettings = new HMSVideoTrackSettings({ initialState: HMSTrackSettingsInitState.UNMUTED, }); return new HMSTrackSettings({ video: videoSettings, audio: audioSettings, }); }; if (cam?.granted && mic?.granted) { HMSSDK.build({ logSettings: new HMSLogSettings({ level: HMSLogLevel.VERBOSE, isLogStorageEnabled: true, maxDirSizeInBytes: HMSLogAlarmManager.DEFAULT_DIR_SIZE, }), trackSettings: getTrackSettings(), }).catch((e: unknown) => { console.error(e); }); } }, [cam?.granted, mic?.granted]); if (!mic || !cam) { return ( Loading permissions ); } if (!mic.granted) { return ( Microphone permissions required {mic.canAskAgain ? ( ) : ( Go to app setting to allow )} ); } if (!cam.granted) { return ( Camera permissions required {mic.canAskAgain ? ( ) : ( Go to app setting to allow )} ); } return ( ); } ```
github-actions[bot] commented 2 months ago

Hello! Thank you for filing an issue.

Please include relevant logs or detailed description for faster resolutions.

We really appreciate your contribution!

RajeshPandey057 commented 2 months ago

ios build log

> expo prebuild --clean

env: load .env.local
env: export APP_VARIANT EXPO_PUBLIC_BASE_URL EXPO_PUBLIC_STRIPE_PKEY
(node:35243) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.
(Use `node --trace-deprecation ...` to show where the warning was created)
Warning! Your git working tree is dirty.
It's recommended to commit all your changes before proceeding, so you can revert the changes made by this command if necessary.

✔ Would you like to proceed? … yes

✔ Cleared android, ios code
✔ Created native directories
✔ Updated package.json | no changes
✔ Finished prebuild
✔ Installed CocoaPods

expo run:ios

env: load .env.local
env: export APP_VARIANT EXPO_PUBLIC_BASE_URL EXPO_PUBLIC_STRIPE_PKEY
(node:36473) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.
(Use `node --trace-deprecation ...` to show where the warning was created)
› Planning build
› Copying   react-native glog/glog.framework/Headers/glog-umbrella.h ➜ ios/Pods/Target/ Support/ Files/glog/glog-umbrella.h
› Preparing @react-native-firebase/crashlytics Pods/FirebaseRemoteConfigInterop » FirebaseRemoteConfigInterop-Info.plist
› Executing react-native Pods/hermes-engine » [CP-User] [Hermes] Replace Hermes for the right configuration, if needed
...
...
...
› Preparing react-native Pods/glog » glog-Info.plist
› Executing @100mslive/react-native-hms Pods/HMSHLSPlayerSDK » [CP] Copy XCFrameworks
› Executing @100mslive/react-native-hms Pods/HMSSDK » [CP] Copy XCFrameworks
...
...
...
› Compiling @100mslive/react-native-hms Pods/HMSNoiseCancellationModels » HMSNoiseCancellationModels-dummy.m
...
...
...
› Compiling @100mslive/react-native-hms Pods/react-native-hms » react-native-hms-dummy.m
› Compiling @100mslive/react-native-hms Pods/react-native-hms » HMSView.m
› Compiling @100mslive/react-native-hms Pods/react-native-hms » HMSManager.m
› Compiling @100mslive/react-native-hms Pods/react-native-hms » HMSHLSPlayerManager.m
...
...
...
› Preparing @100mslive/react-native-hms Pods/react-native-hms » react-native-hms-Info.plist
...
...
...
› Copying   expo-eas-client EASClient/EASClient.framework/Headers/EASClient-umbrella.h ➜ ios/Pods/Target/ Support/ Files/EASClient/EASClient-umbrella.h
› Compiling expo-web-browser Pods/ExpoWebBrowser » ExpoWebBrowser-dummy.m
› Compiling expo-tracking-transparency Pods/ExpoTrackingTransparency » ExpoTrackingTransparency-dummy.m
› Compiling expo-system-ui Pods/ExpoSystemUI » ExpoSystemUI-dummy.m
› Compiling expo-localization Pods/ExpoLocalization » ExpoLocalization-dummy.m
› Compiling expo-local-authentication Pods/ExpoLocalAuthentication » ExpoLocalAuthentication-dummy.m
› Compiling expo-linear-gradient Pods/ExpoLinearGradient » ExpoLinearGradient-dummy.m
› Compiling expo-splash-screen Pods/EXSplashScreen » EXSplashScreen-dummy.m
› Compiling expo Pods/Expo » EXAppDefinesLoader.m
› Compiling expo-notifications Pods/EXNotifications » EXBackgroundNotificationTasksModule.m
› Compiling expo Pods/Expo » Expo-dummy.m
› Compiling expo-splash-screen Pods/EXSplashScreen » EXSplashScreenViewNativeProvider.m
› Compiling expo-splash-screen Pods/EXSplashScreen » EXSplashScreenViewController.m
› Compiling expo-splash-screen Pods/EXSplashScreen » EXSplashScreenService.m
› Compiling expo-splash-screen Pods/EXSplashScreen » EXSplashScreenModule.m
› Compiling expo-notifications Pods/EXNotifications » NSDictionary+EXNotificationsVerifyingClass.m
› Compiling expo-notifications Pods/EXNotifications » EXUserFacingNotificationsPermissionsRequester.m
› Compiling expo-notifications Pods/EXNotifications » EXSingleNotificationHandlerTask.m
› Compiling expo-notifications Pods/EXNotifications » EXServerRegistrationModule.m
› Compiling expo-notifications Pods/EXNotifications » EXRemoteNotificationPermissionSingletonModule.m
› Compiling expo-notifications Pods/EXNotifications » EXPushTokenModule.m
› Compiling expo-notifications Pods/EXNotifications » EXPushTokenManager.m
› Compiling expo-notifications Pods/EXNotifications » EXNotificationsHandlerModule.m
› Compiling expo-notifications Pods/EXNotifications » EXNotificationsEmitter.m
› Compiling expo-notifications Pods/EXNotifications » EXNotifications-dummy.m
› Compiling expo-notifications Pods/EXNotifications » EXNotificationSerializer.m
› Compiling expo-notifications Pods/EXNotifications » EXNotificationSchedulerModule.m
› Compiling expo-notifications Pods/EXNotifications » EXNotificationPresentationModule.m
› Compiling expo-notifications Pods/EXNotifications » EXNotificationPermissionsModule.m
› Compiling expo-notifications Pods/EXNotifications » EXNotificationCenterDelegate.m
› Compiling expo-notifications Pods/EXNotifications » EXNotificationCategoriesModule.m
› Compiling expo-notifications Pods/EXNotifications » EXNotificationBuilder.m
› Compiling expo-notifications Pods/EXNotifications » EXLegacyRemoteNotificationPermissionRequester.m
› Compiling expo-notifications Pods/EXNotifications » EXBadgeModule.m
› Compiling expo-notifications Pods/EXNotifications » EXBackgroundRemoteNotificationConsumer.m
› Compiling expo-keep-awake Pods/ExpoKeepAwake » ExpoKeepAwake-dummy.m
› Compiling expo-router Pods/ExpoHead » ExpoHead-dummy.m
› Compiling expo-haptics Pods/ExpoHaptics » ExpoHaptics-dummy.m
› Compiling expo-font Pods/ExpoFont » ExpoFont-dummy.m
› Compiling expo-file-system Pods/ExpoFileSystem » EXFileSystemAssetLibraryHandler.m
› Compiling expo-device Pods/ExpoDevice » ExpoDevice-dummy.m
› Compiling expo-blur Pods/ExpoBlur » ExpoBlur-dummy.m
› Compiling expo-asset Pods/ExpoAsset » ExpoAsset-dummy.m
› Compiling expo-updates-interface Pods/EXUpdatesInterface » EXUpdatesInterface-dummy.m
› Compiling expo-manifests Pods/EXManifests » EXManifests-dummy.m
› Compiling expo-application Pods/EXApplication » EXApplication-dummy.m
› Compiling expo-file-system Pods/ExpoFileSystem » NSData+EXFileSystem.m
› Compiling expo-file-system Pods/ExpoFileSystem » ExpoFileSystem-dummy.m
› Compiling expo-file-system Pods/ExpoFileSystem » EXTaskHandlersManager.m
› Compiling expo-file-system Pods/ExpoFileSystem » EXSessionUploadTaskDelegate.m
› Compiling expo-file-system Pods/ExpoFileSystem » EXSessionTaskDispatcher.m
› Compiling expo-file-system Pods/ExpoFileSystem » EXSessionTaskDelegate.m
› Compiling expo-file-system Pods/ExpoFileSystem » EXSessionResumableDownloadTaskDelegate.m
› Compiling expo-file-system Pods/ExpoFileSystem » EXSessionHandler.m
› Compiling expo-file-system Pods/ExpoFileSystem » EXSessionDownloadTaskDelegate.m
› Compiling expo-file-system Pods/ExpoFileSystem » EXSessionCancelableUploadTaskDelegate.m
› Compiling expo-file-system Pods/ExpoFileSystem » EXFileSystemLocalFileHandler.m
› Compiling expo-updates-interface Pods/EXUpdatesInterface » noop-file.m
› Compiling expo-application Pods/EXApplication » EXProvisioningProfile.m
› Compiling expo-eas-client Pods/EASClient » EASClient-dummy.m
› Signing   expo-modules-core Pods/ExpoModulesCore » ExpoModulesCore.framework
› Copying   expo-dev-menu expo-dev-menu/EXDevMenu.framework/Headers/expo-dev-menu-umbrella.h ➜ ios/Pods/Target/ Support/ Files/expo-dev-menu/expo-dev-menu-umbrella.h
› Copying   expo-image ExpoImage/ExpoImage.framework/Headers/ExpoImage-umbrella.h ➜ ios/Pods/Target/ Support/ Files/ExpoImage/ExpoImage-umbrella.h
› Copying   expo-updates EXUpdates/EXUpdates.framework/Headers/EXUpdates-umbrella.h ➜ ios/Pods/Target/ Support/ Files/EXUpdates/EXUpdates-umbrella.h
› Preparing expo-web-browser Pods/ExpoWebBrowser » ExpoWebBrowser-Info.plist
› Preparing expo-tracking-transparency Pods/ExpoTrackingTransparency » ExpoTrackingTransparency-Info.plist
› Preparing expo-localization Pods/ExpoLocalization » ExpoLocalization-Info.plist
› Preparing expo-local-authentication Pods/ExpoLocalAuthentication » ExpoLocalAuthentication-Info.plist
› Preparing expo-linear-gradient Pods/ExpoLinearGradient » ExpoLinearGradient-Info.plist
› Preparing expo-keep-awake Pods/ExpoKeepAwake » ExpoKeepAwake-Info.plist
› Preparing expo-system-ui Pods/ExpoSystemUI » ExpoSystemUI-Info.plist
› Preparing expo-router Pods/ExpoHead » ExpoHead-Info.plist
› Preparing expo-haptics Pods/ExpoHaptics » ExpoHaptics-Info.plist
› Preparing expo-font Pods/ExpoFont » ExpoFont-Info.plist
› Preparing expo-image Pods/ExpoImage » ExpoImage-Info.plist
› Preparing expo-file-system Pods/ExpoFileSystem » ExpoFileSystem-Info.plist
› Preparing expo-device Pods/ExpoDevice » ExpoDevice-Info.plist
› Preparing expo-camera Pods/ExpoCamera » ExpoCamera-Info.plist
› Preparing expo-blur Pods/ExpoBlur » ExpoBlur-Info.plist
› Preparing expo-asset Pods/ExpoAsset » ExpoAsset-Info.plist
› Preparing expo Pods/Expo » Expo-Info.plist
› Preparing expo-updates-interface Pods/EXUpdatesInterface » EXUpdatesInterface-Info.plist
› Preparing expo-splash-screen Pods/EXSplashScreen » EXSplashScreen-Info.plist
› Preparing expo-notifications Pods/EXNotifications » EXNotifications-Info.plist
› Preparing expo-manifests Pods/EXManifests » EXManifests-Info.plist
› Preparing expo-application Pods/EXApplication » EXApplication-Info.plist
› Preparing expo-constants Pods/EXConstants » EXConstants-Info.plist
› Preparing expo-eas-client Pods/EASClient » EASClient-Info.plist
› Executing expo-constants Pods/EXConstants » [CP-User] Generate app.config for prebuilt Constants.manifest
› Signing   expo-web-browser Pods/ExpoWebBrowser » ExpoWebBrowser.framework
› Compiling expo-image Pods/ExpoImage » ExpoImage_vers.c
› Compiling expo-image Pods/ExpoImage » ExpoImage-dummy.m
› Compiling expo-camera Pods/ExpoCamera » ExpoCamera-dummy.m
› Signing   expo-system-ui Pods/ExpoSystemUI » ExpoSystemUI.framework
› Signing   expo-tracking-transparency Pods/ExpoTrackingTransparency » ExpoTrackingTransparency.framework
› Signing   expo-localization Pods/ExpoLocalization » ExpoLocalization.framework
› Signing   expo-local-authentication Pods/ExpoLocalAuthentication » ExpoLocalAuthentication.framework
› Signing   expo-linear-gradient Pods/ExpoLinearGradient » ExpoLinearGradient.framework
› Signing   expo-keep-awake Pods/ExpoKeepAwake » ExpoKeepAwake.framework
› Signing   expo-haptics Pods/ExpoHaptics » ExpoHaptics.framework
› Signing   expo-font Pods/ExpoFont » ExpoFont.framework
› Signing   expo-router Pods/ExpoHead » ExpoHead.framework
› Signing   expo-file-system Pods/ExpoFileSystem » ExpoFileSystem.framework
› Signing   expo-device Pods/ExpoDevice » ExpoDevice.framework
› Signing   expo-blur Pods/ExpoBlur » ExpoBlur.framework
› Signing   expo-asset Pods/ExpoAsset » ExpoAsset.framework
› Signing   expo-updates-interface Pods/EXUpdatesInterface » EXUpdatesInterface.framework
› Signing   expo Pods/Expo » Expo.framework
› Signing   expo-splash-screen Pods/EXSplashScreen » EXSplashScreen.framework
› Signing   expo-notifications Pods/EXNotifications » EXNotifications.framework
› Signing   expo-manifests Pods/EXManifests » EXManifests.framework
› Signing   expo-application Pods/EXApplication » EXApplication.framework
› Signing   expo-eas-client Pods/EASClient » EASClient.framework
› Signing   expo-camera Pods/ExpoCamera » ExpoCamera.framework
› Preparing expo-dev-menu Pods/expo-dev-menu » expo-dev-menu-Info.plist
› Preparing expo-updates Pods/EXUpdates » EXUpdates-Info.plist
› Executing expo-updates Pods/EXUpdates » [CP-User] Generate updates resources for expo-updates
› Compiling expo-constants Pods/EXConstants » EXConstantsInstallationIdProvider.m
› Compiling expo-constants Pods/EXConstants » EXConstantsService.m
› Compiling expo-constants Pods/EXConstants » EXConstants-dummy.m
› Signing   expo-constants Pods/EXConstants » EXConstants.framework
› Compiling expo-dev-menu Pods/expo-dev-menu » EXDevMenuAppInfo.m
› Compiling expo-dev-menu Pods/expo-dev-menu » DevMenuRootView.m
› Compiling expo-dev-menu Pods/expo-dev-menu » DevMenuRCTDevSettings.m
› Compiling expo-dev-menu Pods/expo-dev-menu » DevMenuRCTBridge.mm
› Compiling expo-dev-menu Pods/expo-dev-menu » expo-dev-menu-dummy.m
› Compiling expo-dev-menu Pods/expo-dev-menu » DevMenuExtensions.m
› Compiling expo-dev-menu Pods/expo-dev-menu » DevClientRootViewFactory.mm
› Compiling expo-dev-menu Pods/expo-dev-menu » DevClientNoOpLoadingView.m
› Compiling expo-dev-menu Pods/expo-dev-menu » DevClientAppDelegate.mm
› Copying   expo-dev-launcher expo-dev-launcher/EXDevLauncher.framework/Headers/expo-dev-launcher-umbrella.h ➜ ios/Pods/Target/ Support/ Files/expo-dev-launcher/expo-dev-launcher-umbrella.h
› Compiling expo-updates Pods/EXUpdates » EXUpdatesMultipartStreamReader.m
› Compiling expo-updates Pods/EXUpdates » EXUpdatesParameterParser.m
› Compiling expo-updates Pods/EXUpdates » EXUpdates-dummy.m
› Compiling expo-updates Pods/EXUpdates » EXDeferredRCTRootView.m
› Signing   expo-dev-menu Pods/expo-dev-menu » EXDevMenu.framework
› Compiling expo-dev-launcher Pods/expo-dev-launcher » expo-dev-launcher-dummy.m
› Compiling expo-dev-launcher Pods/expo-dev-launcher » RCTPackagerConnection+EXDevLauncherPackagerConnectionInterceptor.m
› Compiling expo-dev-launcher Pods/expo-dev-launcher » EXRCTAppDelegateInterceptor.mm
› Compiling expo-dev-launcher Pods/expo-dev-launcher » EXDevLauncher_vers.c
› Compiling expo-dev-launcher Pods/expo-dev-launcher » EXDevLauncherUpdatesHelper.m
› Compiling expo-dev-launcher Pods/expo-dev-launcher » EXDevLauncherRedBox.m
› Compiling expo-dev-launcher Pods/expo-dev-launcher » EXDevLauncherRCTDevSettings.m
› Compiling expo-dev-launcher Pods/expo-dev-launcher » EXDevLauncherRCTBridge.m
› Compiling expo-dev-launcher Pods/expo-dev-launcher » EXDevLauncherManifestParser.m
› Compiling expo-dev-launcher Pods/expo-dev-launcher » EXDevLauncherDevMenuExtensions.m
› Compiling expo-dev-launcher Pods/expo-dev-launcher » EXDevLauncherDeferredRCTRootView.m
› Compiling expo-dev-launcher Pods/expo-dev-launcher » EXDevLauncherController.m
› Compiling expo-dev-launcher Pods/expo-dev-launcher » EXDevLauncherAppDelegate.mm
› Compiling expo-dev-launcher Pods/expo-dev-launcher » EXDevLauncher.m
› Preparing expo-dev-launcher Pods/expo-dev-launcher » expo-dev-launcher-Info.plist
› Signing   expo-updates Pods/EXUpdates » EXUpdates.framework
› Copying   Pods_PatientDev.framework/Headers/Pods-PatientDev-umbrella.h ➜ ios/Pods/Target/ Support/ Files/Pods-PatientDev/Pods-PatientDev-umbrella.h
› Compiling Pods/Pods-PatientDev » Pods_PatientDev_vers.c
› Compiling Pods/Pods-PatientDev » Pods-PatientDev-dummy.m
› Signing   expo-image Pods/ExpoImage » ExpoImage.framework
› Creating  expo-image Pods/ExpoImage » ExpoImage.framework
› Signing   expo-dev-launcher Pods/expo-dev-launcher » EXDevLauncher.framework
› Preparing Pods/Pods-PatientDev » Pods-PatientDev-Info.plist
› Signing   Pods/Pods-PatientDev » Pods_PatientDev.framework
› Executing PatientDev » [CP] Check Pods Manifest.lock
› Executing PatientDev » [Expo] Configure project
› Copying   ./PrivacyInfo.xcprivacy ➜ ios/PatientDev/PrivacyInfo.xcprivacy
› Compiling PatientDev » SplashScreen.storyboard
› Copying   ios/PatientDev/GoogleService-Info.plist ➜ ./GoogleService-Info.plist
› Copying   ios/PatientDev/Supporting/Expo.plist ➜ ./Expo.plist
› Preparing PatientDev » Info.plist
› Compiling PatientDev » PatientDev_vers.c
› Compiling PatientDev » main.m
› Compiling PatientDev » AppDelegate.mm
› Linking   PatientDev » PatientDev
⚠️  ld: ignoring duplicate libraries: '-lc++'
› Generating debug PatientDev » PatientDev.app.dSYM
› Executing PatientDev » Bundle React Native code and images
› Executing PatientDev » [CP] Copy Pods Resources
› Executing PatientDev » [CP] Embed Pods Frameworks
› Executing PatientDev » [CP-User] [RNFB] Core Configuration
      A firebase.json file was not found, whilst this file is optional it is recommended to include it to configure firebase services in React Native Firebase.
› Executing PatientDev » [CP-User] [RNFB] Crashlytics Configuration
› Signing   PatientDev » PatientDev.app
⚠️  Script has ambiguous dependencies causing it to run on every build.
   To fix, go to: Xcode » PatientDev/PatientDev » Build Phases » '[CP-User] [RNFB] Core Configuration'
   Either: Uncheck "Based on dependency analysis", or select output files to trigger the script

⚠️  Script has ambiguous dependencies causing it to run on every build.
   To fix, go to: Xcode » PatientDev/PatientDev » Build Phases » '[CP-User] [RNFB] Crashlytics Configuration'
   Either: Uncheck "Based on dependency analysis", or select output files to trigger the script

› Build Succeeded

› 0 error(s), and 4 warning(s)

Using src/app as the root directory for Expo Router.
Starting Metro Bundler
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
█ ▄▄▄▄▄ █▄███ █▄█▄█ ▀█▄ ███ ▄▄▄▄▄ █
█ █   █ ██  █▄ ▀█▄▀▄ ▄ █▀▀█ █   █ █
█ █▄▄▄█ ██▄ ▀ ████ █▄▄▀█▀▀█ █▄▄▄█ █
█▄▄▄▄▄▄▄█ █ █ ▀▄█▄█ ▀▄█▄█ █▄▄▄▄▄▄▄█
█  ▀  █▄██   ▀██▀▀▄█▀███▀█▀▄▀▀█▀▀▄█
█▄▄▀▀ ▄▄▀ ▀  ▀▄█▄  ▀▀▄▄ ▄███▀▀▄   █
███ ██▀▄█ ▄█▄▄█▄ ███▄█▀▄▀▄█▄ █▄▀ ██
█ █  ▀ ▄█▄ ▀▀▀▄▀ ▄█ ▄▄▄██▄▄▀▀█  ▄▀█
██▀▄▄█▄▄▀█▄▀▄▀ ▄▄█▀ ▀▀█ █▄▄ ▄ █▀▀ █
█▀▄▄ ▄▀▄▄▀█ ▄█▀▀ ▄▄█▄██ ▄███▀▀  ▀ █
█▀▄▄█ ▄▄▀ █▄▀ ██ ▀▄▄▀ ▀▀▀▄▄█▄▀██ ▄█
█ █   █▄▀ ▀▀ ▀▄ ▄▄▀▄▀▀▄ ▄▄ █▄▄█  ▄█
█▄▄██▄▄▄▄   ▀▀▀▄ ▄▄▀█ ▀█  ▄▄▄  ▀▀▄█
█ ▄▄▄▄▄ ██▄▄█▄▄█ ▄█▄▄█▄▄  █▄█   ▀▀█
█ █   █ █   ▄▀ ▄▄█▀ ▀▀█ ▄  ▄ ▄▄█▄██
█ █▄▄▄█ █▀▀█▄▀▀▀ ▄▄█▄▄▄▀█▄▄▀▄▄ ▀▀ █
█▄▄▄▄▄▄▄█▄▄▄████▄█▄▄████▄▄▄██▄▄████

› Metro waiting on exp+patient://expo-development-client/?url=http%3A%2F%2F192.168.31.149%3A8081
› Scan the QR code above to open the project in a development build. Learn more: https://expo.fyi/start

› Web is waiting on http://localhost:8081

› Using development build
› Press s │ switch to Expo Go

› Press a │ open Android
› Press i │ open iOS simulator
› Press w │ open web

› Press j │ open debugger
› Press r │ reload app
› Press m │ toggle menu
› Press o │ open project code in your editor

› Press ? │ show all commands

(node:36473) Warning: To load an ES module, set "type": "module" in the package.json or use the .mjs extension.
(node:36473) Warning: To load an ES module, set "type": "module" in the package.json or use the .mjs extension.
(node:36473) Warning: To load an ES module, set "type": "module" in the package.json or use the .mjs extension.
(node:36473) Warning: To load an ES module, set "type": "module" in the package.json or use the .mjs extension.
(node:36473) Warning: To load an ES module, set "type": "module" in the package.json or use the .mjs extension.
(node:36473) Warning: To load an ES module, set "type": "module" in the package.json or use the .mjs extension.
(node:36473) Warning: To load an ES module, set "type": "module" in the package.json or use the .mjs extension.
(node:36473) Warning: To load an ES module, set "type": "module" in the package.json or use the .mjs extension.
(node:36473) Warning: To load an ES module, set "type": "module" in the package.json or use the .mjs extension.
› Installing on iPhone 15
› Opening on iPhone 15 (com.hellowellness.patient.dev)
› Opening exp+patient://expo-development-client/?url=http%3A%2F%2F192.168.31.149%3A8081 on iPhone 15
› Opening the iOS simulator, this might take a moment.

› Logs for your project will appear below. Press Ctrl+C to exit.
(node:36473) [DEP0044] DeprecationWarning: The `util.isArray` API is deprecated. Please use `Array.isArray()` instead.
done
iOS node_modules/expo-router/entry.js ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓░ 94.0% (2207/2276)[UIKitCore] Class CKBrowserSwitcherViewController overrides the -traitCollection getter, which is not supported. If you're
trying to override traits, you must use the appropriate API.
iOS Bundled 7360ms node_modules/expo-router/entry.js (2387 modules)

ios crash report

-------------------------------------
Translated Report (Full Report Below)
-------------------------------------

Incident Identifier: 39DCC671-22E5-4ED3-BEF9-D79F531D0F46
CrashReporter Key:   87633338-EE75-9C54-B9A3-099783D6692B
Hardware Model:      MacBookPro18,3
Process:             PatientDev [42778]
Path:                /Users/USER/Library/Developer/CoreSimulator/Devices/F2DAB3E6-B36F-4938-A648-C9D838228E39/data/Containers/Bundle/Application/DE6CAFFC-853D-4D39-A28E-095E50C3AC48/PatientDev.app/PatientDev
Identifier:          com.hellowellness.patient.dev
Version:             1.0.0 (1)
Code Type:           ARM-64 (Native)
Role:                Foreground
Parent Process:      launchd_sim [36557]
Coalition:           com.apple.CoreSimulator.SimDevice.F2DAB3E6-B36F-4938-A648-C9D838228E39 [275241]
Responsible Process: SimulatorTrampoline [12303]

Date/Time:           2024-08-11 10:30:56.7986 +0530
Launch Time:         2024-08-11 10:30:45.9069 +0530
OS Version:          macOS 14.5 (23F79)
Release Type:        User
Report Version:      104

Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
Exception Subtype: KERN_INVALID_ADDRESS at 0x0000000000000000
Exception Codes: 0x0000000000000001, 0x0000000000000000
VM Region Info: 0 is not in any region.  Bytes before following region: 4342398976
      REGION TYPE                    START - END         [ VSIZE] PRT/MAX SHRMOD  REGION DETAIL
      UNUSED SPACE AT START
--->  
      __TEXT                      102d3c000-1055d8000    [ 40.6M] r-x/r-x SM=COW  /Users/USER/Library/Developer/CoreSimulator/Devices/F2DAB3E6-B36F-4938-A648-C9D838228E39/data/Containers/Bundle/Application/DE6CAFFC-853D-4D39-A28E-095E50C3AC48/PatientDev.app/PatientDev
Termination Reason: SIGNAL 11 Segmentation fault: 11
Terminating Process: exc handler [42778]

Triggered by Thread:  12

Kernel Triage:
VM - (arg = 0x3) mach_vm_allocate_kernel failed within call to vm_map_enter
VM - (arg = 0x3) mach_vm_allocate_kernel failed within call to vm_map_enter
VM - (arg = 0x3) mach_vm_allocate_kernel failed within call to vm_map_enter
VM - (arg = 0x3) mach_vm_allocate_kernel failed within call to vm_map_enter
VM - (arg = 0x3) mach_vm_allocate_kernel failed within call to vm_map_enter

Thread 0::  Dispatch queue: com.apple.main-thread
0   libsystem_kernel.dylib                 0x10a02d570 mach_msg2_trap + 8
1   libsystem_kernel.dylib                 0x10a03eb80 mach_msg2_internal + 76
2   libsystem_kernel.dylib                 0x10a035798 mach_msg_overwrite + 532
3   libsystem_kernel.dylib                 0x10a02d8e8 mach_msg + 20
4   CoreFoundation                         0x18040e6c4 __CFRunLoopServiceMachPort + 156
5   CoreFoundation                         0x180408da4 __CFRunLoopRun + 1148
6   CoreFoundation                         0x180408514 CFRunLoopRunSpecific + 572
7   GraphicsServices                       0x18ef06ae4 GSEventRunModal + 160
8   UIKitCore                              0x1853e8040 -[UIApplication _run] + 868
9   UIKitCore                              0x1853ebcc8 UIApplicationMain + 124
10  PatientDev                             0x102d41060 main + 96 (main.m:7)
11  dyld_sim                               0x109fa1544 start_sim + 20
12  dyld                                   0x10a1420e0 start + 2360

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

Thread 2:
0   libsystem_pthread.dylib                0x10ae365cc start_wqthread + 0

Thread 3:: com.apple.uikit.eventfetch-thread
0   libsystem_kernel.dylib                 0x10a02d570 mach_msg2_trap + 8
1   libsystem_kernel.dylib                 0x10a03eb80 mach_msg2_internal + 76
2   libsystem_kernel.dylib                 0x10a035798 mach_msg_overwrite + 532
3   libsystem_kernel.dylib                 0x10a02d8e8 mach_msg + 20
4   CoreFoundation                         0x18040e6c4 __CFRunLoopServiceMachPort + 156
5   CoreFoundation                         0x180408da4 __CFRunLoopRun + 1148
6   CoreFoundation                         0x180408514 CFRunLoopRunSpecific + 572
7   Foundation                             0x180dea38c -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 208
8   Foundation                             0x180dea5b0 -[NSRunLoop(NSRunLoop) runUntilDate:] + 60
9   UIKitCore                              0x18548df20 -[UIEventFetcher threadMain] + 404
10  Foundation                             0x180e10be4 __NSThread__start__ + 720
11  libsystem_pthread.dylib                0x10ae3b414 _pthread_start + 104
12  libsystem_pthread.dylib                0x10ae365e0 thread_start + 8

Thread 4:
0   libsystem_pthread.dylib                0x10ae365cc start_wqthread + 0

Thread 5:
0   libsystem_pthread.dylib                0x10ae365cc start_wqthread + 0

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

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

Thread 8:: com.google.firebase.crashlytics.MachExceptionServer
0   libsystem_kernel.dylib                 0x10a030d3c write + 8
1   PatientDev                             0x103270e10 FIRCLSSDKFileLog + 424 (FIRCLSInternalLogging.c:62)
2   PatientDev                             0x103273b48 FIRCLSMachExceptionReply + 332 (FIRCLSMachException.c:265)
3   PatientDev                             0x1032735ec FIRCLSMachExceptionServer + 100 (FIRCLSMachException.c:176)
4   libsystem_pthread.dylib                0x10ae3b414 _pthread_start + 104
5   libsystem_pthread.dylib                0x10ae365e0 thread_start + 8

Thread 9:: com.apple.CFNetwork.CustomProtocols
0   libsystem_kernel.dylib                 0x10a02d570 mach_msg2_trap + 8
1   libsystem_kernel.dylib                 0x10a03eb80 mach_msg2_internal + 76
2   libsystem_kernel.dylib                 0x10a035798 mach_msg_overwrite + 532
3   libsystem_kernel.dylib                 0x10a02d8e8 mach_msg + 20
4   CoreFoundation                         0x18040e6c4 __CFRunLoopServiceMachPort + 156
5   CoreFoundation                         0x180408da4 __CFRunLoopRun + 1148
6   CoreFoundation                         0x180408514 CFRunLoopRunSpecific + 572
7   CFNetwork                              0x184540b58 0x184328000 + 2198360
8   Foundation                             0x180e10be4 __NSThread__start__ + 720
9   libsystem_pthread.dylib                0x10ae3b414 _pthread_start + 104
10  libsystem_pthread.dylib                0x10ae365e0 thread_start + 8

Thread 10:: com.facebook.SocketRocket.NetworkThread
0   libsystem_kernel.dylib                 0x10a02d570 mach_msg2_trap + 8
1   libsystem_kernel.dylib                 0x10a03eb80 mach_msg2_internal + 76
2   libsystem_kernel.dylib                 0x10a035798 mach_msg_overwrite + 532
3   libsystem_kernel.dylib                 0x10a02d8e8 mach_msg + 20
4   CoreFoundation                         0x18040e6c4 __CFRunLoopServiceMachPort + 156
5   CoreFoundation                         0x180408da4 __CFRunLoopRun + 1148
6   CoreFoundation                         0x180408514 CFRunLoopRunSpecific + 572
7   Foundation                             0x180dea38c -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 208
8   PatientDev                             0x1040762b8 -[SRRunLoopThread main] + 260 (SRRunLoopThread.m:71)
9   Foundation                             0x180e10be4 __NSThread__start__ + 720
10  libsystem_pthread.dylib                0x10ae3b414 _pthread_start + 104
11  libsystem_pthread.dylib                0x10ae365e0 thread_start + 8

Thread 11:: com.apple.NSURLConnectionLoader
0   libsystem_kernel.dylib                 0x10a02d570 mach_msg2_trap + 8
1   libsystem_kernel.dylib                 0x10a03eb80 mach_msg2_internal + 76
2   libsystem_kernel.dylib                 0x10a035798 mach_msg_overwrite + 532
3   libsystem_kernel.dylib                 0x10a02d8e8 mach_msg + 20
4   CoreFoundation                         0x18040e6c4 __CFRunLoopServiceMachPort + 156
5   CoreFoundation                         0x180408da4 __CFRunLoopRun + 1148
6   CoreFoundation                         0x180408514 CFRunLoopRunSpecific + 572
7   CFNetwork                              0x184540b58 0x184328000 + 2198360
8   Foundation                             0x180e10be4 __NSThread__start__ + 720
9   libsystem_pthread.dylib                0x10ae3b414 _pthread_start + 104
10  libsystem_pthread.dylib                0x10ae365e0 thread_start + 8

Thread 12 Crashed:: com.facebook.react.runtime.JavaScript
0   libsystem_platform.dylib               0x109ec4c24 _platform_strlen + 4
1   PatientDev                             0x102d44594 std::__1::__constexpr_strlen[abi:ue170006](char const*) + 24 (constexpr_c_functions.h:49)
2   PatientDev                             0x102d444a4 std::__1::char_traits<char>::length[abi:ue170006](char const*) + 24 (char_traits.h:222)
3   PatientDev                             0x102d44430 std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>::basic_string[abi:ue170006]<0>(char const*) + 56 (string:940)
4   PatientDev                             0x102d43fe8 std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>::basic_string[abi:ue170006]<0>(char const*) + 36 (string:938)
5   PatientDev                             0x103f1af78 facebook::react::(anonymous namespace)::parseExportedMethods(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, objc_class*) + 376 (RCTInteropTurboModule.mm:126)
6   PatientDev                             0x103f1a674 facebook::react::ObjCInteropTurboModule::ObjCInteropTurboModule(facebook::react::ObjCTurboModule::InitParams const&) + 176 (RCTInteropTurboModule.mm:188)
7   PatientDev                             0x103f1bed0 facebook::react::ObjCInteropTurboModule::ObjCInteropTurboModule(facebook::react::ObjCTurboModule::InitParams const&) + 36 (RCTInteropTurboModule.mm:187)
8   PatientDev                             0x103f4f400 facebook::react::ObjCInteropTurboModule* std::__1::construct_at[abi:ue170006]<facebook::react::ObjCInteropTurboModule, facebook::react::ObjCTurboModule::InitParams&, facebook::react::ObjCInteropTurboModule*>(facebook::react::ObjCInteropTurboModule*, facebook::react::ObjCTurboModule::InitParams&) + 44 (construct_at.h:41)
9   PatientDev                             0x103f4f220 void std::__1::allocator_traits<std::__1::allocator<facebook::react::ObjCInteropTurboModule>>::construct[abi:ue170006]<facebook::react::ObjCInteropTurboModule, facebook::react::ObjCTurboModule::InitParams&, void, void>(std::__1::allocator<facebook::react::ObjCInteropTurboModule>&, facebook::react::ObjCInteropTurboModule*, facebook::react::ObjCTurboModule::InitParams&) + 36 (allocator_traits.h:304)
10  PatientDev                             0x103f4f14c std::__1::__shared_ptr_emplace<facebook::react::ObjCInteropTurboModule, std::__1::allocator<facebook::react::ObjCInteropTurboModule>>::__shared_ptr_emplace[abi:ue170006]<facebook::react::ObjCTurboModule::InitParams&>(std::__1::allocator<facebook::react::ObjCInteropTurboModule>, facebook::react::ObjCTurboModule::InitParams&) + 116 (shared_ptr.h:300)
11  PatientDev                             0x103f4ee34 std::__1::__shared_ptr_emplace<facebook::react::ObjCInteropTurboModule, std::__1::allocator<facebook::react::ObjCInteropTurboModule>>::__shared_ptr_emplace[abi:ue170006]<facebook::react::ObjCTurboModule::InitParams&>(std::__1::allocator<facebook::react::ObjCInteropTurboModule>, facebook::react::ObjCTurboModule::InitParams&) + 36 (shared_ptr.h:292)
12  PatientDev                             0x103f4ed3c std::__1::shared_ptr<facebook::react::ObjCInteropTurboModule> std::__1::allocate_shared[abi:ue170006]<facebook::react::ObjCInteropTurboModule, std::__1::allocator<facebook::react::ObjCInteropTurboModule>, facebook::react::ObjCTurboModule::InitParams&, void>(std::__1::allocator<facebook::react::ObjCInteropTurboModule> const&, facebook::react::ObjCTurboModule::InitParams&) + 60 (shared_ptr.h:1023)
13  PatientDev                             0x103f468a0 std::__1::shared_ptr<facebook::react::ObjCInteropTurboModule> std::__1::make_shared[abi:ue170006]<facebook::react::ObjCInteropTurboModule, facebook::react::ObjCTurboModule::InitParams&, void>(facebook::react::ObjCTurboModule::InitParams&) + 52 (shared_ptr.h:1032)
14  PatientDev                             0x103f4661c -[RCTTurboModuleManager provideLegacyModule:] + 1184 (RCTTurboModuleManager.mm:463)
15  PatientDev                             0x103f54c10 -[RCTTurboModuleManager installJSBindings:]::$_1::operator()(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&) const + 128 (RCTTurboModuleManager.mm:951)
16  PatientDev                             0x103f54b84 decltype(std::declval<-[RCTTurboModuleManager installJSBindings:]::$_1&>()(std::declval<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&>())) std::__1::__invoke[abi:ue170006]<-[RCTTurboModuleManager installJSBindings:]::$_1&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&>(-[RCTTurboModuleManager installJSBindings:]::$_1&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&) + 40 (invoke.h:340)
17  PatientDev                             0x103f54b2c std::__1::shared_ptr<facebook::react::TurboModule> std::__1::__invoke_void_return_wrapper<std::__1::shared_ptr<facebook::react::TurboModule>, false>::__call[abi:ue170006]<-[RCTTurboModuleManager installJSBindings:]::$_1&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&>(-[RCTTurboModuleManager installJSBindings:]::$_1&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&) + 40 (invoke.h:407)
18  PatientDev                             0x103f54af8 std::__1::__function::__alloc_func<-[RCTTurboModuleManager installJSBindings:]::$_1, std::__1::allocator<-[RCTTurboModuleManager installJSBindings:]::$_1>, std::__1::shared_ptr<facebook::react::TurboModule> (std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)>::operator()[abi:ue170006](std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&) + 48 (function.h:193)
19  PatientDev                             0x103f537a8 std::__1::__function::__func<-[RCTTurboModuleManager installJSBindings:]::$_1, std::__1::allocator<-[RCTTurboModuleManager installJSBindings:]::$_1>, std::__1::shared_ptr<facebook::react::TurboModule> (std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)>::operator()(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&) + 44 (function.h:364)
20  PatientDev                             0x103bf0cc0 std::__1::__function::__value_func<std::__1::shared_ptr<facebook::react::TurboModule> (std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)>::operator()[abi:ue170006](std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&) const + 88 (function.h:518)
21  PatientDev                             0x103bed16c std::__1::function<std::__1::shared_ptr<facebook::react::TurboModule> (std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)>::operator()(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&) const + 40 (function.h:1169)
22  PatientDev                             0x103bece7c facebook::react::TurboModuleBinding::getModule(facebook::jsi::Runtime&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&) const + 100 (TurboModuleBinding.cpp:133)
23  PatientDev                             0x103bf058c facebook::react::BridgelessNativeModuleProxy::get(facebook::jsi::Runtime&, facebook::jsi::PropNameID const&) + 196 (TurboModuleBinding.cpp:46)
24  PatientDev                             0x10386eb14 facebook::jsi::DecoratedHostObject::get(facebook::jsi::Runtime&, facebook::jsi::PropNameID const&) + 92 (decorator.h:70)
25  hermes                                 0x10cb966ec facebook::hermes::HermesRuntimeImpl::JsiProxy::get(hermes::vm::SymbolID) + 84
26  hermes                                 0x10cc3b068 hermes::vm::JSObject::getNamedWithReceiver_RJS(hermes::vm::Handle<hermes::vm::JSObject>, hermes::vm::Runtime&, hermes::vm::SymbolID, hermes::vm::Handle<hermes::vm::HermesValue>, hermes::vm::PropOpFlags, hermes::vm::PropertyCacheEntry*) + 692
27  hermes                                 0x10cc23c5c hermes::vm::CallResult<hermes::vm::HermesValue, (hermes::vm::detail::CallResultSpecialize)2> hermes::vm::Interpreter::interpretFunction<false, false>(hermes::vm::Runtime&, hermes::vm::InterpreterState&) + 10724
28  hermes                                 0x10cc21244 hermes::vm::Runtime::interpretFunctionImpl(hermes::vm::CodeBlock*) + 132
29  hermes                                 0x10cc07c70 hermes::vm::JSFunction::_callImpl(hermes::vm::Handle<hermes::vm::Callable>, hermes::vm::Runtime&) + 40
30  hermes                                 0x10cc05c7c hermes::vm::Callable::executeCall0(hermes::vm::Handle<hermes::vm::Callable>, hermes::vm::Runtime&, hermes::vm::Handle<hermes::vm::HermesValue>, bool) + 176
31  hermes                                 0x10cc3b494 hermes::vm::JSObject::getComputedWithReceiver_RJS(hermes::vm::Handle<hermes::vm::JSObject>, hermes::vm::Runtime&, hermes::vm::Handle<hermes::vm::HermesValue>, hermes::vm::Handle<hermes::vm::HermesValue>) + 628
32  hermes                                 0x10cc24194 hermes::vm::CallResult<hermes::vm::HermesValue, (hermes::vm::detail::CallResultSpecialize)2> hermes::vm::Interpreter::interpretFunction<false, false>(hermes::vm::Runtime&, hermes::vm::InterpreterState&) + 12060
33  hermes                                 0x10cc21244 hermes::vm::Runtime::interpretFunctionImpl(hermes::vm::CodeBlock*) + 132
34  hermes                                 0x10cc07c70 hermes::vm::JSFunction::_callImpl(hermes::vm::Handle<hermes::vm::Callable>, hermes::vm::Runtime&) + 40
35  hermes                                 0x10cc074f0 hermes::vm::BoundFunction::_boundCall(hermes::vm::BoundFunction*, hermes::inst::Inst const*, hermes::vm::Runtime&) + 584
36  hermes                                 0x10cb8f39c facebook::hermes::HermesRuntimeImpl::call(facebook::jsi::Function const&, facebook::jsi::Value const&, facebook::jsi::Value const*, unsigned long) + 724
37  PatientDev                             0x10386dedc facebook::jsi::RuntimeDecorator<facebook::jsi::Runtime, facebook::jsi::Runtime>::call(facebook::jsi::Function const&, facebook::jsi::Value const&, facebook::jsi::Value const*, unsigned long) + 76 (decorator.h:347)
38  PatientDev                             0x10308b3d4 facebook::jsi::Function::call(facebook::jsi::Runtime&, facebook::jsi::Value const*, unsigned long) const + 100 (jsi-inl.h:264)
39  PatientDev                             0x10308b364 facebook::jsi::Function::call(facebook::jsi::Runtime&, std::initializer_list<facebook::jsi::Value>) const + 112 (jsi-inl.h:269)
40  PatientDev                             0x1040085ac facebook::react::Task::execute(facebook::jsi::Runtime&, bool) + 296 (Task.cpp:45)
41  PatientDev                             0x103ff0e64 facebook::react::RuntimeScheduler_Modern::executeMacrotask(facebook::jsi::Runtime&, facebook::react::Task&, bool) const + 76 (RuntimeScheduler_Modern.cpp:330)
42  PatientDev                             0x103ff0d60 facebook::react::RuntimeScheduler_Modern::executeTask(facebook::jsi::Runtime&, facebook::react::Task&, std::__1::chrono::time_point<std::__1::chrono::steady_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l>>>) + 204 (RuntimeScheduler_Modern.cpp:291)
43  PatientDev                             0x103ff08f0 facebook::react::RuntimeScheduler_Modern::startWorkLoop(facebook::jsi::Runtime&, bool) + 224 (RuntimeScheduler_Modern.cpp:242)
44  PatientDev                             0x103ff6a50 facebook::react::RuntimeScheduler_Modern::scheduleWorkLoop()::$_1::operator()(facebook::jsi::Runtime&) const + 44 (RuntimeScheduler_Modern.cpp:222)
45  PatientDev                             0x103ff6a18 decltype(std::declval<facebook::react::RuntimeScheduler_Modern::scheduleWorkLoop()::$_1&>()(std::declval<facebook::jsi::Runtime&>())) std::__1::__invoke[abi:ue170006]<facebook::react::RuntimeScheduler_Modern::scheduleWorkLoop()::$_1&, facebook::jsi::Runtime&>(facebook::react::RuntimeScheduler_Modern::scheduleWorkLoop()::$_1&, facebook::jsi::Runtime&) + 32 (invoke.h:340)
46  PatientDev                             0x103ff69c8 void std::__1::__invoke_void_return_wrapper<void, true>::__call[abi:ue170006]<facebook::react::RuntimeScheduler_Modern::scheduleWorkLoop()::$_1&, facebook::jsi::Runtime&>(facebook::react::RuntimeScheduler_Modern::scheduleWorkLoop()::$_1&, facebook::jsi::Runtime&) + 32 (invoke.h:415)
47  PatientDev                             0x103ff699c std::__1::__function::__alloc_func<facebook::react::RuntimeScheduler_Modern::scheduleWorkLoop()::$_1, std::__1::allocator<facebook::react::RuntimeScheduler_Modern::scheduleWorkLoop()::$_1>, void (facebook::jsi::Runtime&)>::operator()[abi:ue170006](facebook::jsi::Runtime&) + 36 (function.h:193)
48  PatientDev                             0x103ff5818 std::__1::__function::__func<facebook::react::RuntimeScheduler_Modern::scheduleWorkLoop()::$_1, std::__1::allocator<facebook::react::RuntimeScheduler_Modern::scheduleWorkLoop()::$_1>, void (facebook::jsi::Runtime&)>::operator()(facebook::jsi::Runtime&) + 36 (function.h:364)
49  PatientDev                             0x1030a55f4 std::__1::__function::__value_func<void (facebook::jsi::Runtime&)>::operator()[abi:ue170006](facebook::jsi::Runtime&) const + 76 (function.h:518)
50  PatientDev                             0x1030a5240 std::__1::function<void (facebook::jsi::Runtime&)>::operator()(facebook::jsi::Runtime&) const + 32 (function.h:1169)
51  PatientDev                             0x103f9c228 facebook::react::ReactInstance::ReactInstance(std::__1::unique_ptr<facebook::react::JSRuntime, std::__1::default_delete<facebook::react::JSRuntime>>, std::__1::shared_ptr<facebook::react::MessageQueueThread>, std::__1::shared_ptr<facebook::react::TimerManager>, std::__1::function<void (facebook::react::MapBuffer)>, facebook::react::jsinspector_modern::PageTarget*)::$_0::operator()(std::__1::function<void (facebook::jsi::Runtime&)>&&) const::'lambda'()::operator()() const + 112 (ReactInstance.cpp:70)
52  PatientDev                             0x103f9c1ac decltype(std::declval<facebook::react::ReactInstance::ReactInstance(std::__1::unique_ptr<facebook::react::JSRuntime, std::__1::default_delete<facebook::react::JSRuntime>>, std::__1::shared_ptr<facebook::react::MessageQueueThread>, std::__1::shared_ptr<facebook::react::TimerManager>, std::__1::function<void (facebook::react::MapBuffer)>, facebook::react::jsinspector_modern::PageTarget*)::$_0::operator()(std::__1::function<void (facebook::jsi::Runtime&)>&&) const::'lambda'()&>()()) std::__1::__invoke[abi:ue170006]<facebook::react::ReactInstance::ReactInstance(std::__1::unique_ptr<facebook::react::JSRuntime, std::__1::default_delete<facebook::react::JSRuntime>>, std::__1::shared_ptr<facebook::react::MessageQueueThread>, std::__1::shared_ptr<facebook::react::TimerManager>, std::__1::function<void (facebook::react::MapBuffer)>, facebook::react::jsinspector_modern::PageTarget*)::$_0::operator()(std::__1::function<void (facebook::jsi::Runtime&)>&&) const::'lambda'()&>(facebook::react::ReactInstance::ReactInstance(std::__1::unique_ptr<facebook::react::JSRuntime, std::__1::default_delete<facebook::react::JSRuntime>>, std::__1::shared_ptr<facebook::react::MessageQueueThread>, std::__1::shared_ptr<facebook::react::TimerManager>, std::__1::function<void (facebook::react::MapBuffer)>, facebook::react::jsinspector_modern::PageTarget*)::$_0::operator()(std::__1::function<void (facebook::jsi::Runtime&)>&&) const::'lambda'()&) + 24 (invoke.h:340)
53  PatientDev                             0x103f9c164 void std::__1::__invoke_void_return_wrapper<void, true>::__call[abi:ue170006]<facebook::react::ReactInstance::ReactInstance(std::__1::unique_ptr<facebook::react::JSRuntime, std::__1::default_delete<facebook::react::JSRuntime>>, std::__1::shared_ptr<facebook::react::MessageQueueThread>, std::__1::shared_ptr<facebook::react::TimerManager>, std::__1::function<void (facebook::react::MapBuffer)>, facebook::react::jsinspector_modern::PageTarget*)::$_0::operator()(std::__1::function<void (facebook::jsi::Runtime&)>&&) const::'lambda'()&>(facebook::react::ReactInstance::ReactInstance(std::__1::unique_ptr<facebook::react::JSRuntime, std::__1::default_delete<facebook::react::JSRuntime>>, std::__1::shared_ptr<facebook::react::MessageQueueThread>, std::__1::shared_ptr<facebook::react::TimerManager>, std::__1::function<void (facebook::react::MapBuffer)>, facebook::react::jsinspector_modern::PageTarget*)::$_0::operator()(std::__1::function<void (facebook::jsi::Runtime&)>&&) const::'lambda'()&) + 24 (invoke.h:415)
54  PatientDev                             0x103f9c140 std::__1::__function::__alloc_func<facebook::react::ReactInstance::ReactInstance(std::__1::unique_ptr<facebook::react::JSRuntime, std::__1::default_delete<facebook::react::JSRuntime>>, std::__1::shared_ptr<facebook::react::MessageQueueThread>, std::__1::shared_ptr<facebook::react::TimerManager>, std::__1::function<void (facebook::react::MapBuffer)>, facebook::react::jsinspector_modern::PageTarget*)::$_0::operator()(std::__1::function<void (facebook::jsi::Runtime&)>&&) const::'lambda'(), std::__1::allocator<facebook::react::ReactInstance::ReactInstance(std::__1::unique_ptr<facebook::react::JSRuntime, std::__1::default_delete<facebook::react::JSRuntime>>, std::__1::shared_ptr<facebook::react::MessageQueueThread>, std::__1::shared_ptr<facebook::react::TimerManager>, std::__1::function<void (facebook::react::MapBuffer)>, facebook::react::jsinspector_modern::PageTarget*)::$_0::operator()(std::__1::function<void (facebook::jsi::Runtime&)>&&) const::'lambda'()>, void ()>::operator()[abi:ue170006]() + 28 (function.h:193)
55  PatientDev                             0x103f9ae98 std::__1::__function::__func<facebook::react::ReactInstance::ReactInstance(std::__1::unique_ptr<facebook::react::JSRuntime, std::__1::default_delete<facebook::react::JSRuntime>>, std::__1::shared_ptr<facebook::react::MessageQueueThread>, std::__1::shared_ptr<facebook::react::TimerManager>, std::__1::function<void (facebook::react::MapBuffer)>, facebook::react::jsinspector_modern::PageTarget*)::$_0::operator()(std::__1::function<void (facebook::jsi::Runtime&)>&&) const::'lambda'(), std::__1::allocator<facebook::react::ReactInstance::ReactInstance(std::__1::unique_ptr<facebook::react::JSRuntime, std::__1::default_delete<facebook::react::JSRuntime>>, std::__1::shared_ptr<facebook::react::MessageQueueThread>, std::__1::shared_ptr<facebook::react::TimerManager>, std::__1::function<void (facebook::react::MapBuffer)>, facebook::react::jsinspector_modern::PageTarget*)::$_0::operator()(std::__1::function<void (facebook::jsi::Runtime&)>&&) const::'lambda'()>, void ()>::operator()() + 28 (function.h:364)
56  PatientDev                             0x10308be3c std::__1::__function::__value_func<void ()>::operator()[abi:ue170006]() const + 68 (function.h:518)
57  PatientDev                             0x10308bdec std::__1::function<void ()>::operator()() const + 24 (function.h:1169)
58  PatientDev                             0x103b21a24 facebook::react::tryAndReturnError(std::__1::function<void ()> const&) + 24 (RCTCxxUtils.mm:73)
59  PatientDev                             0x103b4aba4 facebook::react::RCTMessageThread::tryFunc(std::__1::function<void ()> const&) + 36 (RCTMessageThread.mm:68)
60  PatientDev                             0x103b4f64c facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_1::operator()() const + 80 (RCTMessageThread.mm:81)
61  PatientDev                             0x103b4f5f0 decltype(std::declval<facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_1&>()()) std::__1::__invoke[abi:ue170006]<facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_1&>(facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_1&) + 24 (invoke.h:340)
62  PatientDev                             0x103b4f5a8 void std::__1::__invoke_void_return_wrapper<void, true>::__call[abi:ue170006]<facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_1&>(facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_1&) + 24 (invoke.h:415)
63  PatientDev                             0x103b4f584 std::__1::__function::__alloc_func<facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_1, std::__1::allocator<facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_1>, void ()>::operator()[abi:ue170006]() + 28 (function.h:193)
64  PatientDev                             0x103b4e294 std::__1::__function::__func<facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_1, std::__1::allocator<facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_1>, void ()>::operator()() + 28 (function.h:364)
65  PatientDev                             0x10308be3c std::__1::__function::__value_func<void ()>::operator()[abi:ue170006]() const + 68 (function.h:518)
66  PatientDev                             0x10308bdec std::__1::function<void ()>::operator()() const + 24 (function.h:1169)
67  PatientDev                             0x103b4a968 invocation function for block in facebook::react::RCTMessageThread::runAsync(std::__1::function<void ()>) + 48 (RCTMessageThread.mm:44)
68  CoreFoundation                         0x18040ec50 __CFRUNLOOP_IS_CALLING_OUT_TO_A_BLOCK__ + 20
69  CoreFoundation                         0x18040e398 __CFRunLoopDoBlocks + 352
70  CoreFoundation                         0x180409264 __CFRunLoopRun + 2364
71  CoreFoundation                         0x180408514 CFRunLoopRunSpecific + 572
72  PatientDev                             0x103f84994 +[RCTJSThreadManager runRunLoop] + 292 (RCTJSThreadManager.mm:102)
73  Foundation                             0x180e10be4 __NSThread__start__ + 720
74  libsystem_pthread.dylib                0x10ae3b414 _pthread_start + 104
75  libsystem_pthread.dylib                0x10ae365e0 thread_start + 8

Thread 13:: com.apple.CFSocket.private
0   libsystem_kernel.dylib                 0x10a037b0c __select + 8
1   CoreFoundation                         0x18041d0ac __CFSocketManager + 612
2   libsystem_pthread.dylib                0x10ae3b414 _pthread_start + 104
3   libsystem_pthread.dylib                0x10ae365e0 thread_start + 8

Thread 14:: hades
0   libsystem_kernel.dylib                 0x10a030a70 __psynch_cvwait + 8
1   libsystem_pthread.dylib                0x10ae3b9cc _pthread_cond_wait + 1216
2   libc++.1.dylib                         0x1802ea6d8 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 24
3   hermes                                 0x10ccea448 hermes::vm::HadesGC::Executor::worker() + 112
4   hermes                                 0x10ccea3ac void* std::__1::__thread_proxy[abi:v160006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, hermes::vm::HadesGC::Executor::Executor()::'lambda'()>>(void*) + 44
5   libsystem_pthread.dylib                0x10ae3b414 _pthread_start + 104
6   libsystem_pthread.dylib                0x10ae365e0 thread_start + 8

Thread 15:: com.apple.CFStream.LegacyThread
0   libsystem_kernel.dylib                 0x10a02d570 mach_msg2_trap + 8
1   libsystem_kernel.dylib                 0x10a03eb80 mach_msg2_internal + 76
2   libsystem_kernel.dylib                 0x10a035798 mach_msg_overwrite + 532
3   libsystem_kernel.dylib                 0x10a02d8e8 mach_msg + 20
4   CoreFoundation                         0x18040e6c4 __CFRunLoopServiceMachPort + 156
5   CoreFoundation                         0x180408da4 __CFRunLoopRun + 1148
6   CoreFoundation                         0x180408514 CFRunLoopRunSpecific + 572
7   CoreFoundation                         0x18042bdc0 _legacyStreamRunLoop_workThread + 260
8   libsystem_pthread.dylib                0x10ae3b414 _pthread_start + 104
9   libsystem_pthread.dylib                0x10ae365e0 thread_start + 8

Thread 16:: hades
0   libsystem_kernel.dylib                 0x10a030a70 __psynch_cvwait + 8
1   libsystem_pthread.dylib                0x10ae3b9cc _pthread_cond_wait + 1216
2   libc++.1.dylib                         0x1802ea6d8 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 24
3   hermes                                 0x10ccea448 hermes::vm::HadesGC::Executor::worker() + 112
4   hermes                                 0x10ccea3ac void* std::__1::__thread_proxy[abi:v160006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, hermes::vm::HadesGC::Executor::Executor()::'lambda'()>>(void*) + 44
5   libsystem_pthread.dylib                0x10ae3b414 _pthread_start + 104
6   libsystem_pthread.dylib                0x10ae365e0 thread_start + 8

Thread 12 crashed with ARM Thread State (64-bit):
    x0: 0x0000000000000000   x1: 0x0000000000000000   x2: 0x000000016d85ba5e   x3: 0x0000000000000001
    x4: 0x0000000000000000   x5: 0x0000000000000004   x6: 0x0000000000000001   x7: 0x0000000000000b90
    x8: 0x0000000000000000   x9: 0x8f525636f1560095  x10: 0x0000000000000050  x11: 0x00000001e054d0d9
   x12: 0x00005ffe1fb6c227  x13: 0x0000000000000003  x14: 0x0000000180000000  x15: 0x0000000242bd4000
   x16: 0x0000000109ec4c20  x17: 0x000000000000000c  x18: 0x0000000000000000  x19: 0x0000600000287900
   x20: 0x00000000000054db  x21: 0x00000000000054db  x22: 0x000000010fc9bc48  x23: 0x0000000000000000
   x24: 0x000000010bb2e5f0  x25: 0x0000000000000000  x26: 0x0000000000bfef50  x27: 0x000000010fc9bc48
   x28: 0x000000010fc9bc00   fp: 0x000000016d85ba10   lr: 0x0000000102d44594
    sp: 0x000000016d85ba00   pc: 0x0000000109ec4c24 cpsr: 0x60001000
   far: 0x0000000000000000  esr: 0x92000006 (Data Abort) byte read Translation fault

Binary Images:
       0x10a13c000 -        0x10a1c7fff dyld (*) <37bbc384-0755-31c7-a808-0ed49e44dd8e> /usr/lib/dyld
       0x10a27c000 -        0x10a287fff libobjc-trampolines.dylib (*) <cd1bd3cb-1477-3dca-8afc-cff937b3025d> /Volumes/VOLUME/*/libobjc-trampolines.dylib
       0x109ee4000 -        0x109eebfff live.100ms.HMS.Analytics (0.0.2) <8dfd1681-5c7b-3d3b-9e36-3507813dcc3a> /Users/USER/Library/Developer/CoreSimulator/Devices/F2DAB3E6-B36F-4938-A648-C9D838228E39/data/Containers/Bundle/Application/DE6CAFFC-853D-4D39-A28E-095E50C3AC48/PatientDev.app/Frameworks/HMSAnalyticsSDK.framework/HMSAnalyticsSDK
       0x109f34000 -        0x109f4bfff live.100ms.HMS.ScreenShare (0.0.9) <a9b1a2e7-9588-3086-999f-2f4213ea1317> /Users/USER/Library/Developer/CoreSimulator/Devices/F2DAB3E6-B36F-4938-A648-C9D838228E39/data/Containers/Bundle/Application/DE6CAFFC-853D-4D39-A28E-095E50C3AC48/PatientDev.app/Frameworks/HMSBroadcastExtensionSDK.framework/HMSBroadcastExtensionSDK
       0x109f64000 -        0x109f77fff live.100ms.HMS.HLSPlayer (0.0.2) <ccd0fa8b-8759-3bda-9d07-c52f7d331824> /Users/USER/Library/Developer/CoreSimulator/Devices/F2DAB3E6-B36F-4938-A648-C9D838228E39/data/Containers/Bundle/Application/DE6CAFFC-853D-4D39-A28E-095E50C3AC48/PatientDev.app/Frameworks/HMSHLSPlayerSDK.framework/HMSHLSPlayerSDK
       0x10b274000 -        0x10b573fff live.100ms.HMS (1.15.0) <187f375b-7e1b-3d32-b427-2cbf781c8c0d> /Users/USER/Library/Developer/CoreSimulator/Devices/F2DAB3E6-B36F-4938-A648-C9D838228E39/data/Containers/Bundle/Application/DE6CAFFC-853D-4D39-A28E-095E50C3AC48/PatientDev.app/Frameworks/HMSSDK.framework/HMSSDK
       0x10c0f4000 -        0x10ca73fff org.webrtc.WebRTC (1.0) <4c4c4400-5555-3144-a1d3-6cc12c1cc819> /Users/USER/Library/Developer/CoreSimulator/Devices/F2DAB3E6-B36F-4938-A648-C9D838228E39/data/Containers/Bundle/Application/DE6CAFFC-853D-4D39-A28E-095E50C3AC48/PatientDev.app/Frameworks/WebRTC.framework/WebRTC
       0x10cb84000 -        0x10ce8bfff dev.hermesengine.iphonesimulator (0.12.0) <04b8008c-a953-336f-8043-1540012d2df6> /Users/USER/Library/Developer/CoreSimulator/Devices/F2DAB3E6-B36F-4938-A648-C9D838228E39/data/Containers/Bundle/Application/DE6CAFFC-853D-4D39-A28E-095E50C3AC48/PatientDev.app/Frameworks/hermes.framework/hermes
       0x109ec4000 -        0x109ecbfff libsystem_platform.dylib (*) <b7159952-fab4-38ce-a131-446d54c54afc> /usr/lib/system/libsystem_platform.dylib
       0x10a02c000 -        0x10a067fff libsystem_kernel.dylib (*) <0c657561-0a7d-344e-838f-109a718679cf> /usr/lib/system/libsystem_kernel.dylib
       0x10ae34000 -        0x10ae43fff libsystem_pthread.dylib (*) <f0346f94-d1b1-311f-9ac1-aa8107c597ad> /usr/lib/system/libsystem_pthread.dylib
       0x102d3c000 -        0x1055d7fff com.hellowellness.patient.dev (1.0.0) <465f2b92-20e3-3f99-87e1-68d89b530df9> /Users/USER/Library/Developer/CoreSimulator/Devices/F2DAB3E6-B36F-4938-A648-C9D838228E39/data/Containers/Bundle/Application/DE6CAFFC-853D-4D39-A28E-095E50C3AC48/PatientDev.app/PatientDev
       0x109fa0000 -        0x109febfff dyld_sim (*) <496faa0c-90ce-3140-9e23-1f02a673b817> /Volumes/VOLUME/*/dyld_sim
       0x180381000 -        0x180734fff com.apple.CoreFoundation (6.9) <7d1f50b3-ed7d-3987-bced-ad6779b49c86> /Volumes/VOLUME/*/CoreFoundation.framework/CoreFoundation
       0x18ef03000 -        0x18ef0bfff com.apple.GraphicsServices (1.0) <4a4b088d-4b30-3333-87b4-a40533ac5580> /Volumes/VOLUME/*/GraphicsServices.framework/GraphicsServices
       0x1847f9000 -        0x186198fff com.apple.UIKitCore (1.0) <5354928b-4688-337f-b9fc-835aa5aa3543> /Volumes/VOLUME/*/UIKitCore.framework/UIKitCore
               0x0 - 0xffffffffffffffff ??? (*) <00000000-0000-0000-0000-000000000000> ???
       0x1807b4000 -        0x18127bfff com.apple.Foundation (6.9) <0480a70b-2076-3964-b6e5-3c8d92b1d9dc> /Volumes/VOLUME/*/Foundation.framework/Foundation
       0x1800ee000 -        0x1800f1ffc libsystem_blocks.dylib (*) <1b7f0e87-abc6-30a5-800a-49260237e5c8> /Volumes/VOLUME/*/libsystem_blocks.dylib
       0x184328000 -        0x1846bafff com.apple.CFNetwork (1.0) <98afd9b7-9e45-3c02-a8d8-b3118d48efdf> /Volumes/VOLUME/*/CFNetwork.framework/CFNetwork
       0x1802da000 -        0x18035bfff libc++.1.dylib (*) <df3f2e78-a676-3e41-88e0-69f3dc6972c8> /Volumes/VOLUME/*/libc++.1.dylib

EOF

-----------
Full Report
-----------

{"app_name":"PatientDev","timestamp":"2024-08-11 10:31:03.00 +0530","app_version":"1.0.0","slice_uuid":"465f2b92-20e3-3f99-87e1-68d89b530df9","build_version":"1","platform":7,"bundleID":"com.hellowellness.patient.dev","share_with_app_devs":0,"is_first_party":0,"bug_type":"309","os_version":"macOS 14.5 (23F79)","roots_installed":0,"name":"PatientDev","incident_id":"39DCC671-22E5-4ED3-BEF9-D79F531D0F46"}
{
  "uptime" : 880000,
  "procRole" : "Foreground",
  "version" : 2,
  "userID" : 501,
  "deployVersion" : 210,
  "modelCode" : "MacBookPro18,3",
  "coalitionID" : 275241,
  "osVersion" : {
    "train" : "macOS 14.5",
    "build" : "23F79",
    "releaseType" : "User"
  },
  "captureTime" : "2024-08-11 10:30:56.7986 +0530",
  "codeSigningMonitor" : 1,
  "incident" : "39DCC671-22E5-4ED3-BEF9-D79F531D0F46",
  "pid" : 42778,
  "translated" : false,
  "cpuType" : "ARM-64",
  "roots_installed" : 0,
  "bug_type" : "309",
  "procLaunch" : "2024-08-11 10:30:45.9069 +0530",
  "procStartAbsTime" : 21168339928780,
  "procExitAbsTime" : 21168595396968,
  "procName" : "PatientDev",
  "procPath" : "\/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/F2DAB3E6-B36F-4938-A648-C9D838228E39\/data\/Containers\/Bundle\/Application\/DE6CAFFC-853D-4D39-A28E-095E50C3AC48\/PatientDev.app\/PatientDev",
  "bundleInfo" : {"CFBundleShortVersionString":"1.0.0","CFBundleVersion":"1","CFBundleIdentifier":"com.hellowellness.patient.dev"},
  "storeInfo" : {"deviceIdentifierForVendor":"1494A337-4B05-5F8E-9F62-7524D9D9AA0A","thirdParty":true},
  "parentProc" : "launchd_sim",
  "parentPid" : 36557,
  "coalitionName" : "com.apple.CoreSimulator.SimDevice.F2DAB3E6-B36F-4938-A648-C9D838228E39",
  "crashReporterKey" : "87633338-EE75-9C54-B9A3-099783D6692B",
  "responsiblePid" : 12303,
  "responsibleProc" : "SimulatorTrampoline",
  "codeSigningID" : "com.hellowellness.patient.dev",
  "codeSigningTeamID" : "",
  "codeSigningFlags" : 570425861,
  "codeSigningValidationCategory" : 10,
  "codeSigningTrustLevel" : 4294967295,
  "instructionByteStream" : {"beforePC":"AagxbiMAJh5AAADLPwAD6yEwg5oAAAGLwANf1h8gA9UfIAPVAex8kg==","atPC":"IADAPcP5\/xBiBME8AgxAkmMAAsthAMA9AByhTgUAABQfIAPVHyAD1Q=="},
  "wakeTime" : 12838,
  "sleepWakeUUID" : "DAA2C5FB-AB27-4287-9A49-44DCD6113F03",
  "sip" : "enabled",
  "vmRegionInfo" : "0 is not in any region.  Bytes before following region: 4342398976\n      REGION TYPE                    START - END         [ VSIZE] PRT\/MAX SHRMOD  REGION DETAIL\n      UNUSED SPACE AT START\n--->  \n      __TEXT                      102d3c000-1055d8000    [ 40.6M] r-x\/r-x SM=COW  \/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/F2DAB3E6-B36F-4938-A648-C9D838228E39\/data\/Containers\/Bundle\/Application\/DE6CAFFC-853D-4D39-A28E-095E50C3AC48\/PatientDev.app\/PatientDev",
  "exception" : {"codes":"0x0000000000000001, 0x0000000000000000","rawCodes":[1,0],"type":"EXC_BAD_ACCESS","signal":"SIGSEGV","subtype":"KERN_INVALID_ADDRESS at 0x0000000000000000"},
  "termination" : {"flags":0,"code":11,"namespace":"SIGNAL","indicator":"Segmentation fault: 11","byProc":"exc handler","byPid":42778},
  "ktriageinfo" : "VM - (arg = 0x3) mach_vm_allocate_kernel failed within call to vm_map_enter\nVM - (arg = 0x3) mach_vm_allocate_kernel failed within call to vm_map_enter\nVM - (arg = 0x3) mach_vm_allocate_kernel failed within call to vm_map_enter\nVM - (arg = 0x3) mach_vm_allocate_kernel failed within call to vm_map_enter\nVM - (arg = 0x3) mach_vm_allocate_kernel failed within call to vm_map_enter\n",
  "vmregioninfo" : "0 is not in any region.  Bytes before following region: 4342398976\n      REGION TYPE                    START - END         [ VSIZE] PRT\/MAX SHRMOD  REGION DETAIL\n      UNUSED SPACE AT START\n--->  \n      __TEXT                      102d3c000-1055d8000    [ 40.6M] r-x\/r-x SM=COW  \/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/F2DAB3E6-B36F-4938-A648-C9D838228E39\/data\/Containers\/Bundle\/Application\/DE6CAFFC-853D-4D39-A28E-095E50C3AC48\/PatientDev.app\/PatientDev",
  "extMods" : {"caller":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"system":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"targeted":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"warnings":0},
  "faultingThread" : 12,
  "threads" : [{"id":16655160,"threadState":{"x":[{"value":268451845},{"value":21592279046},{"value":8589934592},{"value":45092861640704},{"value":0},{"value":45092861640704},{"value":2},{"value":4294967295},{"value":18446744073709550527},{"value":10499},{"value":0},{"value":1},{"value":10499},{"value":3072},{"value":0},{"value":9895604649984},{"value":18446744073709551569},{"value":9895604652290},{"value":0},{"value":4294967295},{"value":2},{"value":45092861640704},{"value":0},{"value":45092861640704},{"value":6124474904},{"value":8589934592},{"value":21592279046},{"value":21592279046},{"value":4412409862}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4462996352},"cpsr":{"value":4096},"fp":{"value":6124474752},"sp":{"value":6124474672},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4462925168},"far":{"value":0}},"queue":"com.apple.main-thread","frames":[{"imageOffset":5488,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":9},{"imageOffset":76672,"symbol":"mach_msg2_internal","symbolLocation":76,"imageIndex":9},{"imageOffset":38808,"symbol":"mach_msg_overwrite","symbolLocation":532,"imageIndex":9},{"imageOffset":6376,"symbol":"mach_msg","symbolLocation":20,"imageIndex":9},{"imageOffset":579268,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":156,"imageIndex":13},{"imageOffset":556452,"symbol":"__CFRunLoopRun","symbolLocation":1148,"imageIndex":13},{"imageOffset":554260,"symbol":"CFRunLoopRunSpecific","symbolLocation":572,"imageIndex":13},{"imageOffset":15076,"symbol":"GSEventRunModal","symbolLocation":160,"imageIndex":14},{"imageOffset":12513344,"symbol":"-[UIApplication _run]","symbolLocation":868,"imageIndex":15},{"imageOffset":12528840,"symbol":"UIApplicationMain","symbolLocation":124,"imageIndex":15},{"imageOffset":20576,"sourceLine":7,"sourceFile":"main.m","symbol":"main","imageIndex":11,"symbolLocation":96},{"imageOffset":5444,"symbol":"start_sim","symbolLocation":20,"imageIndex":12},{"imageOffset":24800,"symbol":"start","symbolLocation":2360,"imageIndex":0}]},{"id":16655202,"frames":[{"imageOffset":9676,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":10}],"threadState":{"x":[{"value":6125039616},{"value":6663},{"value":6124503040},{"value":0},{"value":409604},{"value":18446744073709551615},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6125039616},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4477642188},"far":{"value":0}}},{"id":16655208,"frames":[{"imageOffset":9676,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":10}],"threadState":{"x":[{"value":6125613056},{"value":4099},{"value":6125076480},{"value":0},{"value":409604},{"value":18446744073709551615},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6125613056},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4477642188},"far":{"value":0}}},{"id":16655211,"name":"com.apple.uikit.eventfetch-thread","threadState":{"x":[{"value":268451845},{"value":21592279046},{"value":8589934592},{"value":48391396524032},{"value":2162692},{"value":48391396524032},{"value":2},{"value":4294967295},{"value":18446744073709550527},{"value":11267},{"value":0},{"value":1},{"value":11267},{"value":3072},{"value":2043},{"value":2328010747},{"value":18446744073709551569},{"value":83},{"value":0},{"value":4294967295},{"value":2},{"value":48391396524032},{"value":2162692},{"value":48391396524032},{"value":6126755192},{"value":8589934592},{"value":21592279046},{"value":21592279046},{"value":4412409862}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4462996352},"cpsr":{"value":4096},"fp":{"value":6126755040},"sp":{"value":6126754960},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4462925168},"far":{"value":0}},"frames":[{"imageOffset":5488,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":9},{"imageOffset":76672,"symbol":"mach_msg2_internal","symbolLocation":76,"imageIndex":9},{"imageOffset":38808,"symbol":"mach_msg_overwrite","symbolLocation":532,"imageIndex":9},{"imageOffset":6376,"symbol":"mach_msg","symbolLocation":20,"imageIndex":9},{"imageOffset":579268,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":156,"imageIndex":13},{"imageOffset":556452,"symbol":"__CFRunLoopRun","symbolLocation":1148,"imageIndex":13},{"imageOffset":554260,"symbol":"CFRunLoopRunSpecific","symbolLocation":572,"imageIndex":13},{"imageOffset":6513548,"symbol":"-[NSRunLoop(NSRunLoop) runMode:beforeDate:]","symbolLocation":208,"imageIndex":17},{"imageOffset":6514096,"symbol":"-[NSRunLoop(NSRunLoop) runUntilDate:]","symbolLocation":60,"imageIndex":17},{"imageOffset":13192992,"symbol":"-[UIEventFetcher threadMain]","symbolLocation":404,"imageIndex":15},{"imageOffset":6671332,"symbol":"__NSThread__start__","symbolLocation":720,"imageIndex":17},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":10},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":10}]},{"id":16655212,"frames":[{"imageOffset":9676,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":10}],"threadState":{"x":[{"value":6127333376},{"value":12035},{"value":6126796800},{"value":0},{"value":409604},{"value":18446744073709551615},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6127333376},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4477642188},"far":{"value":0}}},{"id":16655214,"frames":[{"imageOffset":9676,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":10}],"threadState":{"x":[{"value":6128480256},{"value":32515},{"value":6127943680},{"value":0},{"value":409604},{"value":18446744073709551615},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6128480256},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4477642188},"far":{"value":0}}},{"id":16655226,"frames":[{"imageOffset":9676,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":10}],"threadState":{"x":[{"value":6129053696},{"value":32259},{"value":6128517120},{"value":0},{"value":409604},{"value":18446744073709551615},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6129053696},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4477642188},"far":{"value":0}}},{"id":16655227,"frames":[{"imageOffset":9676,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":10}],"threadState":{"x":[{"value":6129627136},{"value":32003},{"value":6129090560},{"value":0},{"value":409604},{"value":18446744073709551615},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6129627136},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4477642188},"far":{"value":0}}},{"id":16655228,"name":"com.google.firebase.crashlytics.MachExceptionServer","threadState":{"x":[{"value":1},{"value":0},{"value":1},{"value":4461448036},{"value":10758893076481},{"value":0},{"value":0},{"value":0},{"value":4382093692},{"value":5},{"value":2505},{"value":1},{"value":0},{"value":0},{"value":8388592936,"symbolLocation":0,"symbol":"_NSConcreteStackBlock"},{"value":8388592936,"symbolLocation":0,"symbol":"_NSConcreteStackBlock"},{"value":4},{"value":6443429852,"symbolLocation":0,"symbol":"-[__NSStackBlock__ release]"},{"value":0},{"value":6129647616},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4347858448},"cpsr":{"value":2147487744},"fp":{"value":4472454816},"sp":{"value":4472454608},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4462939452},"far":{"value":0}},"frames":[{"imageOffset":19772,"symbol":"write","symbolLocation":8,"imageIndex":9},{"imageOffset":5459472,"sourceLine":62,"sourceFile":"FIRCLSInternalLogging.c","symbol":"FIRCLSSDKFileLog","imageIndex":11,"symbolLocation":424},{"imageOffset":5471048,"sourceLine":265,"sourceFile":"FIRCLSMachException.c","symbol":"FIRCLSMachExceptionReply","imageIndex":11,"symbolLocation":332},{"imageOffset":5469676,"sourceLine":176,"sourceFile":"FIRCLSMachException.c","symbol":"FIRCLSMachExceptionServer","imageIndex":11,"symbolLocation":100},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":10},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":10}]},{"id":16655248,"name":"com.apple.CFNetwork.CustomProtocols","threadState":{"x":[{"value":268451845},{"value":21592279046},{"value":8589934592},{"value":111080739176448},{"value":0},{"value":111080739176448},{"value":2},{"value":4294967295},{"value":18446744073709550527},{"value":25863},{"value":0},{"value":1},{"value":25863},{"value":3072},{"value":0},{"value":2199023255552},{"value":18446744073709551569},{"value":2199023256066},{"value":0},{"value":4294967295},{"value":2},{"value":111080739176448},{"value":0},{"value":111080739176448},{"value":6130212184},{"value":8589934592},{"value":21592279046},{"value":21592279046},{"value":4412409862}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4462996352},"cpsr":{"value":4096},"fp":{"value":6130212032},"sp":{"value":6130211952},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4462925168},"far":{"value":0}},"frames":[{"imageOffset":5488,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":9},{"imageOffset":76672,"symbol":"mach_msg2_internal","symbolLocation":76,"imageIndex":9},{"imageOffset":38808,"symbol":"mach_msg_overwrite","symbolLocation":532,"imageIndex":9},{"imageOffset":6376,"symbol":"mach_msg","symbolLocation":20,"imageIndex":9},{"imageOffset":579268,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":156,"imageIndex":13},{"imageOffset":556452,"symbol":"__CFRunLoopRun","symbolLocation":1148,"imageIndex":13},{"imageOffset":554260,"symbol":"CFRunLoopRunSpecific","symbolLocation":572,"imageIndex":13},{"imageOffset":2198360,"imageIndex":19},{"imageOffset":6671332,"symbol":"__NSThread__start__","symbolLocation":720,"imageIndex":17},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":10},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":10}]},{"id":16655249,"name":"com.facebook.SocketRocket.NetworkThread","threadState":{"x":[{"value":268451845},{"value":21592279046},{"value":8589934592},{"value":183631326740480},{"value":0},{"value":183631326740480},{"value":2},{"value":4294967295},{"value":18446744073709550527},{"value":42755},{"value":0},{"value":1},{"value":42755},{"value":3072},{"value":0},{"value":3298534883328},{"value":18446744073709551569},{"value":3298534884098},{"value":0},{"value":4294967295},{"value":2},{"value":183631326740480},{"value":0},{"value":183631326740480},{"value":6130785608},{"value":8589934592},{"value":21592279046},{"value":21592279046},{"value":4412409862}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4462996352},"cpsr":{"value":4096},"fp":{"value":6130785456},"sp":{"value":6130785376},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4462925168},"far":{"value":0}},"frames":[{"imageOffset":5488,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":9},{"imageOffset":76672,"symbol":"mach_msg2_internal","symbolLocation":76,"imageIndex":9},{"imageOffset":38808,"symbol":"mach_msg_overwrite","symbolLocation":532,"imageIndex":9},{"imageOffset":6376,"symbol":"mach_msg","symbolLocation":20,"imageIndex":9},{"imageOffset":579268,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":156,"imageIndex":13},{"imageOffset":556452,"symbol":"__CFRunLoopRun","symbolLocation":1148,"imageIndex":13},{"imageOffset":554260,"symbol":"CFRunLoopRunSpecific","symbolLocation":572,"imageIndex":13},{"imageOffset":6513548,"symbol":"-[NSRunLoop(NSRunLoop) runMode:beforeDate:]","symbolLocation":208,"imageIndex":17},{"imageOffset":20161208,"sourceLine":71,"sourceFile":"SRRunLoopThread.m","symbol":"-[SRRunLoopThread main]","imageIndex":11,"symbolLocation":260},{"imageOffset":6671332,"symbol":"__NSThread__start__","symbolLocation":720,"imageIndex":17},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":10},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":10}]},{"id":16655250,"name":"com.apple.NSURLConnectionLoader","threadState":{"x":[{"value":268451845},{"value":21592279046},{"value":8589934592},{"value":180332791857152},{"value":0},{"value":180332791857152},{"value":2},{"value":4294967295},{"value":18446744073709550527},{"value":41987},{"value":0},{"value":1},{"value":41987},{"value":3072},{"value":2464155652},{"value":3},{"value":18446744073709551569},{"value":2464155652},{"value":0},{"value":4294967295},{"value":2},{"value":180332791857152},{"value":0},{"value":180332791857152},{"value":6131359064},{"value":8589934592},{"value":21592279046},{"value":21592279046},{"value":4412409862}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4462996352},"cpsr":{"value":4096},"fp":{"value":6131358912},"sp":{"value":6131358832},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4462925168},"far":{"value":0}},"frames":[{"imageOffset":5488,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":9},{"imageOffset":76672,"symbol":"mach_msg2_internal","symbolLocation":76,"imageIndex":9},{"imageOffset":38808,"symbol":"mach_msg_overwrite","symbolLocation":532,"imageIndex":9},{"imageOffset":6376,"symbol":"mach_msg","symbolLocation":20,"imageIndex":9},{"imageOffset":579268,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":156,"imageIndex":13},{"imageOffset":556452,"symbol":"__CFRunLoopRun","symbolLocation":1148,"imageIndex":13},{"imageOffset":554260,"symbol":"CFRunLoopRunSpecific","symbolLocation":572,"imageIndex":13},{"imageOffset":2198360,"imageIndex":19},{"imageOffset":6671332,"symbol":"__NSThread__start__","symbolLocation":720,"imageIndex":17},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":10},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":10}]},{"triggered":true,"id":16655254,"name":"com.facebook.react.runtime.JavaScript","threadState":{"x":[{"value":0},{"value":0},{"value":6132447838},{"value":1},{"value":0},{"value":4},{"value":1},{"value":2960},{"value":0},{"value":10327411689491136661},{"value":80},{"value":8058622169,"objc-selector":"🤯"},{"value":105545058402855},{"value":3},{"value":6442450944},{"value":9709633536},{"value":4461448224,"symbolLocation":0,"symbol":"_platform_strlen"},{"value":12},{"value":0},{"value":105553118918912},{"value":21723},{"value":21723},{"value":4559846472},{"value":0},{"value":4491240944},{"value":0},{"value":12578640},{"value":4559846472},{"value":4559846400}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4342433172},"cpsr":{"value":1610616832},"fp":{"value":6132447760},"sp":{"value":6132447744},"esr":{"value":2449473542,"description":"(Data Abort) byte read Translation fault"},"pc":{"value":4461448228,"matchesCrashFrame":1},"far":{"value":0}},"frames":[{"imageOffset":3108,"symbol":"_platform_strlen","symbolLocation":4,"imageIndex":8},{"imageOffset":34196,"sourceLine":49,"sourceFile":"constexpr_c_functions.h","symbol":"std::__1::__constexpr_strlen[abi:ue170006](char const*)","imageIndex":11,"symbolLocation":24},{"imageOffset":33956,"sourceLine":222,"sourceFile":"char_traits.h","symbol":"std::__1::char_traits<char>::length[abi:ue170006](char const*)","imageIndex":11,"symbolLocation":24},{"imageOffset":33840,"sourceLine":940,"sourceFile":"string","symbol":"std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>::basic_string[abi:ue170006]<0>(char const*)","imageIndex":11,"symbolLocation":56},{"imageOffset":32744,"sourceLine":938,"sourceFile":"string","symbol":"std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>::basic_string[abi:ue170006]<0>(char const*)","imageIndex":11,"symbolLocation":36},{"imageOffset":18739064,"sourceLine":126,"sourceFile":"RCTInteropTurboModule.mm","symbol":"facebook::react::(anonymous namespace)::parseExportedMethods(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>, objc_class*)","imageIndex":11,"symbolLocation":376},{"imageOffset":18736756,"sourceLine":188,"sourceFile":"RCTInteropTurboModule.mm","symbol":"facebook::react::ObjCInteropTurboModule::ObjCInteropTurboModule(facebook::react::ObjCTurboModule::InitParams const&)","imageIndex":11,"symbolLocation":176},{"imageOffset":18742992,"sourceLine":187,"sourceFile":"RCTInteropTurboModule.mm","symbol":"facebook::react::ObjCInteropTurboModule::ObjCInteropTurboModule(facebook::react::ObjCTurboModule::InitParams const&)","imageIndex":11,"symbolLocation":36},{"imageOffset":18953216,"sourceLine":41,"sourceFile":"construct_at.h","symbol":"facebook::react::ObjCInteropTurboModule* std::__1::construct_at[abi:ue170006]<facebook::react::ObjCInteropTurboModule, facebook::react::ObjCTurboModule::InitParams&, facebook::react::ObjCInteropTurboModule*>(facebook::react::ObjCInteropTurboModule*, facebook::react::ObjCTurboModule::InitParams&)","imageIndex":11,"symbolLocation":44},{"imageOffset":18952736,"sourceLine":304,"sourceFile":"allocator_traits.h","symbol":"void std::__1::allocator_traits<std::__1::allocator<facebook::react::ObjCInteropTurboModule>>::construct[abi:ue170006]<facebook::react::ObjCInteropTurboModule, facebook::react::ObjCTurboModule::InitParams&, void, void>(std::__1::allocator<facebook::react::ObjCInteropTurboModule>&, facebook::react::ObjCInteropTurboModule*, facebook::react::ObjCTurboModule::InitParams&)","imageIndex":11,"symbolLocation":36},{"imageOffset":18952524,"sourceLine":300,"sourceFile":"shared_ptr.h","symbol":"std::__1::__shared_ptr_emplace<facebook::react::ObjCInteropTurboModule, std::__1::allocator<facebook::react::ObjCInteropTurboModule>>::__shared_ptr_emplace[abi:ue170006]<facebook::react::ObjCTurboModule::InitParams&>(std::__1::allocator<facebook::react::ObjCInteropTurboModule>, facebook::react::ObjCTurboModule::InitParams&)","imageIndex":11,"symbolLocation":116},{"imageOffset":18951732,"sourceLine":292,"sourceFile":"shared_ptr.h","symbol":"std::__1::__shared_ptr_emplace<facebook::react::ObjCInteropTurboModule, std::__1::allocator<facebook::react::ObjCInteropTurboModule>>::__shared_ptr_emplace[abi:ue170006]<facebook::react::ObjCTurboModule::InitParams&>(std::__1::allocator<facebook::react::ObjCInteropTurboModule>, facebook::react::ObjCTurboModule::InitParams&)","imageIndex":11,"symbolLocation":36},{"imageOffset":18951484,"sourceLine":1023,"sourceFile":"shared_ptr.h","symbol":"std::__1::shared_ptr<facebook::react::ObjCInteropTurboModule> std::__1::allocate_shared[abi:ue170006]<facebook::react::ObjCInteropTurboModule, std::__1::allocator<facebook::react::ObjCInteropTurboModule>, facebook::react::ObjCTurboModule::InitParams&, void>(std::__1::allocator<facebook::react::ObjCInteropTurboModule> const&, facebook::react::ObjCTurboModule::InitParams&)","imageIndex":11,"symbolLocation":60},{"imageOffset":18917536,"sourceLine":1032,"sourceFile":"shared_ptr.h","symbol":"std::__1::shared_ptr<facebook::react::ObjCInteropTurboModule> std::__1::make_shared[abi:ue170006]<facebook::react::ObjCInteropTurboModule, facebook::react::ObjCTurboModule::InitParams&, void>(facebook::react::ObjCTurboModule::InitParams&)","imageIndex":11,"symbolLocation":52},{"imageOffset":18916892,"sourceLine":463,"sourceFile":"RCTTurboModuleManager.mm","symbol":"-[RCTTurboModuleManager provideLegacyModule:]","imageIndex":11,"symbolLocation":1184},{"imageOffset":18975760,"sourceLine":951,"sourceFile":"RCTTurboModuleManager.mm","symbol":"-[RCTTurboModuleManager installJSBindings:]::$_1::operator()(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&) const","imageIndex":11,"symbolLocation":128},{"imageOffset":18975620,"sourceLine":340,"sourceFile":"invoke.h","symbol":"decltype(std::declval<-[RCTTurboModuleManager installJSBindings:]::$_1&>()(std::declval<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&>())) std::__1::__invoke[abi:ue170006]<-[RCTTurboModuleManager installJSBindings:]::$_1&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&>(-[RCTTurboModuleManager installJSBindings:]::$_1&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)","imageIndex":11,"symbolLocation":40},{"imageOffset":18975532,"sourceLine":407,"sourceFile":"invoke.h","symbol":"std::__1::shared_ptr<facebook::react::TurboModule> std::__1::__invoke_void_return_wrapper<std::__1::shared_ptr<facebook::react::TurboModule>, false>::__call[abi:ue170006]<-[RCTTurboModuleManager installJSBindings:]::$_1&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&>(-[RCTTurboModuleManager installJSBindings:]::$_1&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)","imageIndex":11,"symbolLocation":40},{"imageOffset":18975480,"sourceLine":193,"sourceFile":"function.h","symbol":"std::__1::__function::__alloc_func<-[RCTTurboModuleManager installJSBindings:]::$_1, std::__1::allocator<-[RCTTurboModuleManager installJSBindings:]::$_1>, std::__1::shared_ptr<facebook::react::TurboModule> (std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)>::operator()[abi:ue170006](std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)","imageIndex":11,"symbolLocation":48},{"imageOffset":18970536,"sourceLine":364,"sourceFile":"function.h","symbol":"std::__1::__function::__func<-[RCTTurboModuleManager installJSBindings:]::$_1, std::__1::allocator<-[RCTTurboModuleManager installJSBindings:]::$_1>, std::__1::shared_ptr<facebook::react::TurboModule> (std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)>::operator()(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)","imageIndex":11,"symbolLocation":44},{"imageOffset":15420608,"sourceLine":518,"sourceFile":"function.h","symbol":"std::__1::__function::__value_func<std::__1::shared_ptr<facebook::react::TurboModule> (std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)>::operator()[abi:ue170006](std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&) const","imageIndex":11,"symbolLocation":88},{"imageOffset":15405420,"sourceLine":1169,"sourceFile":"function.h","symbol":"std::__1::function<std::__1::shared_ptr<facebook::react::TurboModule> (std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)>::operator()(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&) const","imageIndex":11,"symbolLocation":40},{"imageOffset":15404668,"sourceLine":133,"sourceFile":"TurboModuleBinding.cpp","symbol":"facebook::react::TurboModuleBinding::getModule(facebook::jsi::Runtime&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&) const","imageIndex":11,"symbolLocation":100},{"imageOffset":15418764,"sourceLine":46,"sourceFile":"TurboModuleBinding.cpp","symbol":"facebook::react::BridgelessNativeModuleProxy::get(facebook::jsi::Runtime&, facebook::jsi::PropNameID const&)","imageIndex":11,"symbolLocation":196},{"imageOffset":11741972,"sourceLine":70,"sourceFile":"decorator.h","symbol":"facebook::jsi::DecoratedHostObject::get(facebook::jsi::Runtime&, facebook::jsi::PropNameID const&)","imageIndex":11,"symbolLocation":92},{"imageOffset":75500,"symbol":"facebook::hermes::HermesRuntimeImpl::JsiProxy::get(hermes::vm::SymbolID)","symbolLocation":84,"imageIndex":7},{"imageOffset":749672,"symbol":"hermes::vm::JSObject::getNamedWithReceiver_RJS(hermes::vm::Handle<hermes::vm::JSObject>, hermes::vm::Runtime&, hermes::vm::SymbolID, hermes::vm::Handle<hermes::vm::HermesValue>, hermes::vm::PropOpFlags, hermes::vm::PropertyCacheEntry*)","symbolLocation":692,"imageIndex":7},{"imageOffset":654428,"symbol":"hermes::vm::CallResult<hermes::vm::HermesValue, (hermes::vm::detail::CallResultSpecialize)2> hermes::vm::Interpreter::interpretFunction<false, false>(hermes::vm::Runtime&, hermes::vm::InterpreterState&)","symbolLocation":10724,"imageIndex":7},{"imageOffset":643652,"symbol":"hermes::vm::Runtime::interpretFunctionImpl(hermes::vm::CodeBlock*)","symbolLocation":132,"imageIndex":7},{"imageOffset":539760,"symbol":"hermes::vm::JSFunction::_callImpl(hermes::vm::Handle<hermes::vm::Callable>, hermes::vm::Runtime&)","symbolLocation":40,"imageIndex":7},{"imageOffset":531580,"symbol":"hermes::vm::Callable::executeCall0(hermes::vm::Handle<hermes::vm::Callable>, hermes::vm::Runtime&, hermes::vm::Handle<hermes::vm::HermesValue>, bool)","symbolLocation":176,"imageIndex":7},{"imageOffset":750740,"symbol":"hermes::vm::JSObject::getComputedWithReceiver_RJS(hermes::vm::Handle<hermes::vm::JSObject>, hermes::vm::Runtime&, hermes::vm::Handle<hermes::vm::HermesValue>, hermes::vm::Handle<hermes::vm::HermesValue>)","symbolLocation":628,"imageIndex":7},{"imageOffset":655764,"symbol":"hermes::vm::CallResult<hermes::vm::HermesValue, (hermes::vm::detail::CallResultSpecialize)2> hermes::vm::Interpreter::interpretFunction<false, false>(hermes::vm::Runtime&, hermes::vm::InterpreterState&)","symbolLocation":12060,"imageIndex":7},{"imageOffset":643652,"symbol":"hermes::vm::Runtime::interpretFunctionImpl(hermes::vm::CodeBlock*)","symbolLocation":132,"imageIndex":7},{"imageOffset":539760,"symbol":"hermes::vm::JSFunction::_callImpl(hermes::vm::Handle<hermes::vm::Callable>, hermes::vm::Runtime&)","symbolLocation":40,"imageIndex":7},{"imageOffset":537840,"symbol":"hermes::vm::BoundFunction::_boundCall(hermes::vm::BoundFunction*, hermes::inst::Inst const*, hermes::vm::Runtime&)","symbolLocation":584,"imageIndex":7},{"imageOffset":45980,"symbol":"facebook::hermes::HermesRuntimeImpl::call(facebook::jsi::Function const&, facebook::jsi::Value const&, facebook::jsi::Value const*, unsigned long)","symbolLocation":724,"imageIndex":7},{"imageOffset":11738844,"sourceLine":347,"sourceFile":"decorator.h","symbol":"facebook::jsi::RuntimeDecorator<facebook::jsi::Runtime, facebook::jsi::Runtime>::call(facebook::jsi::Function const&, facebook::jsi::Value const&, facebook::jsi::Value const*, unsigned long)","imageIndex":11,"symbolLocation":76},{"imageOffset":3470292,"sourceLine":264,"sourceFile":"jsi-inl.h","symbol":"facebook::jsi::Function::call(facebook::jsi::Runtime&, facebook::jsi::Value const*, unsigned long) const","imageIndex":11,"symbolLocation":100},{"imageOffset":3470180,"sourceLine":269,"sourceFile":"jsi-inl.h","symbol":"facebook::jsi::Function::call(facebook::jsi::Runtime&, std::initializer_list<facebook::jsi::Value>) const","imageIndex":11,"symbolLocation":112},{"imageOffset":19711404,"sourceLine":45,"sourceFile":"Task.cpp","symbol":"facebook::react::Task::execute(facebook::jsi::Runtime&, bool)","imageIndex":11,"symbolLocation":296},{"imageOffset":19615332,"sourceLine":330,"sourceFile":"RuntimeScheduler_Modern.cpp","symbol":"facebook::react::RuntimeScheduler_Modern::executeMacrotask(facebook::jsi::Runtime&, facebook::react::Task&, bool) const","imageIndex":11,"symbolLocation":76},{"imageOffset":19615072,"sourceLine":291,"sourceFile":"RuntimeScheduler_Modern.cpp","symbol":"facebook::react::RuntimeScheduler_Modern::executeTask(facebook::jsi::Runtime&, facebook::react::Task&, std::__1::chrono::time_point<std::__1::chrono::steady_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l>>>)","imageIndex":11,"symbolLocation":204},{"imageOffset":19613936,"sourceLine":242,"sourceFile":"RuntimeScheduler_Modern.cpp","symbol":"facebook::react::RuntimeScheduler_Modern::startWorkLoop(facebook::jsi::Runtime&, bool)","imageIndex":11,"symbolLocation":224},{"imageOffset":19638864,"sourceLine":222,"sourceFile":"RuntimeScheduler_Modern.cpp","symbol":"facebook::react::RuntimeScheduler_Modern::scheduleWorkLoop()::$_1::operator()(facebook::jsi::Runtime&) const","imageIndex":11,"symbolLocation":44},{"imageOffset":19638808,"sourceLine":340,"sourceFile":"invoke.h","symbol":"decltype(std::declval<facebook::react::RuntimeScheduler_Modern::scheduleWorkLoop()::$_1&>()(std::declval<facebook::jsi::Runtime&>())) std::__1::__invoke[abi:ue170006]<facebook::react::RuntimeScheduler_Modern::scheduleWorkLoop()::$_1&, facebook::jsi::Runtime&>(facebook::react::RuntimeScheduler_Modern::scheduleWorkLoop()::$_1&, facebook::jsi::Runtime&)","imageIndex":11,"symbolLocation":32},{"imageOffset":19638728,"sourceLine":415,"sourceFile":"invoke.h","symbol":"void std::__1::__invoke_void_return_wrapper<void, true>::__call[abi:ue170006]<facebook::react::RuntimeScheduler_Modern::scheduleWorkLoop()::$_1&, facebook::jsi::Runtime&>(facebook::react::RuntimeScheduler_Modern::scheduleWorkLoop()::$_1&, facebook::jsi::Runtime&)","imageIndex":11,"symbolLocation":32},{"imageOffset":19638684,"sourceLine":193,"sourceFile":"function.h","symbol":"std::__1::__function::__alloc_func<facebook::react::RuntimeScheduler_Modern::scheduleWorkLoop()::$_1, std::__1::allocator<facebook::react::RuntimeScheduler_Modern::scheduleWorkLoop()::$_1>, void (facebook::jsi::Runtime&)>::operator()[abi:ue170006](facebook::jsi::Runtime&)","imageIndex":11,"symbolLocation":36},{"imageOffset":19634200,"sourceLine":364,"sourceFile":"function.h","symbol":"std::__1::__function::__func<facebook::react::RuntimeScheduler_Modern::scheduleWorkLoop()::$_1, std::__1::allocator<facebook::react::RuntimeScheduler_Modern::scheduleWorkLoop()::$_1>, void (facebook::jsi::Runtime&)>::operator()(facebook::jsi::Runtime&)","imageIndex":11,"symbolLocation":36},{"imageOffset":3577332,"sourceLine":518,"sourceFile":"function.h","symbol":"std::__1::__function::__value_func<void (facebook::jsi::Runtime&)>::operator()[abi:ue170006](facebook::jsi::Runtime&) const","imageIndex":11,"symbolLocation":76},{"imageOffset":3576384,"sourceLine":1169,"sourceFile":"function.h","symbol":"std::__1::function<void (facebook::jsi::Runtime&)>::operator()(facebook::jsi::Runtime&) const","imageIndex":11,"symbolLocation":32},{"imageOffset":19268136,"sourceLine":70,"sourceFile":"ReactInstance.cpp","symbol":"facebook::react::ReactInstance::ReactInstance(std::__1::unique_ptr<facebook::react::JSRuntime, std::__1::default_delete<facebook::react::JSRuntime>>, std::__1::shared_ptr<facebook::react::MessageQueueThread>, std::__1::shared_ptr<facebook::react::TimerManager>, std::__1::function<void (facebook::react::MapBuffer)>, facebook::react::jsinspector_modern::PageTarget*)::$_0::operator()(std::__1::function<void (facebook::jsi::Runtime&)>&&) const::'lambda'()::operator()() const","imageIndex":11,"symbolLocation":112},{"imageOffset":19268012,"sourceLine":340,"sourceFile":"invoke.h","symbol":"decltype(std::declval<facebook::react::ReactInstance::ReactInstance(std::__1::unique_ptr<facebook::react::JSRuntime, std::__1::default_delete<facebook::react::JSRuntime>>, std::__1::shared_ptr<facebook::react::MessageQueueThread>, std::__1::shared_ptr<facebook::react::TimerManager>, std::__1::function<void (facebook::react::MapBuffer)>, facebook::react::jsinspector_modern::PageTarget*)::$_0::operator()(std::__1::function<void (facebook::jsi::Runtime&)>&&) const::'lambda'()&>()()) std::__1::__invoke[abi:ue170006]<facebook::react::ReactInstance::ReactInstance(std::__1::unique_ptr<facebook::react::JSRuntime, std::__1::default_delete<facebook::react::JSRuntime>>, std::__1::shared_ptr<facebook::react::MessageQueueThread>, std::__1::shared_ptr<facebook::react::TimerManager>, std::__1::function<void (facebook::react::MapBuffer)>, facebook::react::jsinspector_modern::PageTarget*)::$_0::operator()(std::__1::function<void (facebook::jsi::Runtime&)>&&) const::'lambda'()&>(facebook::react::ReactInstance::ReactInstance(std::__1::unique_ptr<facebook::react::JSRuntime, std::__1::default_delete<facebook::react::JSRuntime>>, std::__1::shared_ptr<facebook::react::MessageQueueThread>, std::__1::shared_ptr<facebook::react::TimerManager>, std::__1::function<void (facebook::react::MapBuffer)>, facebook::react::jsinspector_modern::PageTarget*)::$_0::operator()(std::__1::function<void (facebook::jsi::Runtime&)>&&) const::'lambda'()&)","imageIndex":11,"symbolLocation":24},{"imageOffset":19267940,"sourceLine":415,"sourceFile":"invoke.h","symbol":"void std::__1::__invoke_void_return_wrapper<void, true>::__call[abi:ue170006]<facebook::react::ReactInstance::ReactInstance(std::__1::unique_ptr<facebook::react::JSRuntime, std::__1::default_delete<facebook::react::JSRuntime>>, std::__1::shared_ptr<facebook::react::MessageQueueThread>, std::__1::shared_ptr<facebook::react::TimerManager>, std::__1::function<void (facebook::react::MapBuffer)>, facebook::react::jsinspector_modern::PageTarget*)::$_0::operator()(std::__1::function<void (facebook::jsi::Runtime&)>&&) const::'lambda'()&>(facebook::react::ReactInstance::ReactInstance(std::__1::unique_ptr<facebook::react::JSRuntime, std::__1::default_delete<facebook::react::JSRuntime>>, std::__1::shared_ptr<facebook::react::MessageQueueThread>, std::__1::shared_ptr<facebook::react::TimerManager>, std::__1::function<void (facebook::react::MapBuffer)>, facebook::react::jsinspector_modern::PageTarget*)::$_0::operator()(std::__1::function<void (facebook::jsi::Runtime&)>&&) const::'lambda'()&)","imageIndex":11,"symbolLocation":24},{"imageOffset":19267904,"sourceLine":193,"sourceFile":"function.h","symbol":"std::__1::__function::__alloc_func<facebook::react::ReactInstance::ReactInstance(std::__1::unique_ptr<facebook::react::JSRuntime, std::__1::default_delete<facebook::react::JSRuntime>>, std::__1::shared_ptr<facebook::react::MessageQueueThread>, std::__1::shared_ptr<facebook::react::TimerManager>, std::__1::function<void (facebook::react::MapBuffer)>, facebook::react::jsinspector_modern::PageTarget*)::$_0::operator()(std::__1::function<void (facebook::jsi::Runtime&)>&&) const::'lambda'(), std::__1::allocator<facebook::react::ReactInstance::ReactInstance(std::__1::unique_ptr<facebook::react::JSRuntime, std::__1::default_delete<facebook::react::JSRuntime>>, std::__1::shared_ptr<facebook::react::MessageQueueThread>, std::__1::shared_ptr<facebook::react::TimerManager>, std::__1::function<void (facebook::react::MapBuffer)>, facebook::react::jsinspector_modern::PageTarget*)::$_0::operator()(std::__1::function<void (facebook::jsi::Runtime&)>&&) const::'lambda'()>, void ()>::operator()[abi:ue170006]()","imageIndex":11,"symbolLocation":28},{"imageOffset":19263128,"sourceLine":364,"sourceFile":"function.h","symbol":"std::__1::__function::__func<facebook::react::ReactInstance::ReactInstance(std::__1::unique_ptr<facebook::react::JSRuntime, std::__1::default_delete<facebook::react::JSRuntime>>, std::__1::shared_ptr<facebook::react::MessageQueueThread>, std::__1::shared_ptr<facebook::react::TimerManager>, std::__1::function<void (facebook::react::MapBuffer)>, facebook::react::jsinspector_modern::PageTarget*)::$_0::operator()(std::__1::function<void (facebook::jsi::Runtime&)>&&) const::'lambda'(), std::__1::allocator<facebook::react::ReactInstance::ReactInstance(std::__1::unique_ptr<facebook::react::JSRuntime, std::__1::default_delete<facebook::react::JSRuntime>>, std::__1::shared_ptr<facebook::react::MessageQueueThread>, std::__1::shared_ptr<facebook::react::TimerManager>, std::__1::function<void (facebook::react::MapBuffer)>, facebook::react::jsinspector_modern::PageTarget*)::$_0::operator()(std::__1::function<void (facebook::jsi::Runtime&)>&&) const::'lambda'()>, void ()>::operator()()","imageIndex":11,"symbolLocation":28},{"imageOffset":3472956,"sourceLine":518,"sourceFile":"function.h","symbol":"std::__1::__function::__value_func<void ()>::operator()[abi:ue170006]() const","imageIndex":11,"symbolLocation":68},{"imageOffset":3472876,"sourceLine":1169,"sourceFile":"function.h","symbol":"std::__1::function<void ()>::operator()() const","imageIndex":11,"symbolLocation":24},{"imageOffset":14572068,"sourceLine":73,"sourceFile":"RCTCxxUtils.mm","symbol":"facebook::react::tryAndReturnError(std::__1::function<void ()> const&)","imageIndex":11,"symbolLocation":24},{"imageOffset":14740388,"sourceLine":68,"sourceFile":"RCTMessageThread.mm","symbol":"facebook::react::RCTMessageThread::tryFunc(std::__1::function<void ()> const&)","imageIndex":11,"symbolLocation":36},{"imageOffset":14759500,"sourceLine":81,"sourceFile":"RCTMessageThread.mm","symbol":"facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_1::operator()() const","imageIndex":11,"symbolLocation":80},{"imageOffset":14759408,"sourceLine":340,"sourceFile":"invoke.h","symbol":"decltype(std::declval<facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_1&>()()) std::__1::__invoke[abi:ue170006]<facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_1&>(facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_1&)","imageIndex":11,"symbolLocation":24},{"imageOffset":14759336,"sourceLine":415,"sourceFile":"invoke.h","symbol":"void std::__1::__invoke_void_return_wrapper<void, true>::__call[abi:ue170006]<facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_1&>(facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_1&)","imageIndex":11,"symbolLocation":24},{"imageOffset":14759300,"sourceLine":193,"sourceFile":"function.h","symbol":"std::__1::__function::__alloc_func<facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_1, std::__1::allocator<facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_1>, void ()>::operator()[abi:ue170006]()","imageIndex":11,"symbolLocation":28},{"imageOffset":14754452,"sourceLine":364,"sourceFile":"function.h","symbol":"std::__1::__function::__func<facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_1, std::__1::allocator<facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_1>, void ()>::operator()()","imageIndex":11,"symbolLocation":28},{"imageOffset":3472956,"sourceLine":518,"sourceFile":"function.h","symbol":"std::__1::__function::__value_func<void ()>::operator()[abi:ue170006]() const","imageIndex":11,"symbolLocation":68},{"imageOffset":3472876,"sourceLine":1169,"sourceFile":"function.h","symbol":"std::__1::function<void ()>::operator()() const","imageIndex":11,"symbolLocation":24},{"imageOffset":14739816,"sourceLine":44,"sourceFile":"RCTMessageThread.mm","symbol":"invocation function for block in facebook::react::RCTMessageThread::runAsync(std::__1::function<void ()>)","imageIndex":11,"symbolLocation":48},{"imageOffset":580688,"symbol":"__CFRUNLOOP_IS_CALLING_OUT_TO_A_BLOCK__","symbolLocation":20,"imageIndex":13},{"imageOffset":578456,"symbol":"__CFRunLoopDoBlocks","symbolLocation":352,"imageIndex":13},{"imageOffset":557668,"symbol":"__CFRunLoopRun","symbolLocation":2364,"imageIndex":13},{"imageOffset":554260,"symbol":"CFRunLoopRunSpecific","symbolLocation":572,"imageIndex":13},{"imageOffset":19171732,"sourceLine":102,"sourceFile":"RCTJSThreadManager.mm","symbol":"+[RCTJSThreadManager runRunLoop]","imageIndex":11,"symbolLocation":292},{"imageOffset":6671332,"symbol":"__NSThread__start__","symbolLocation":720,"imageIndex":17},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":10},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":10}]},{"id":16655255,"name":"com.apple.CFSocket.private","threadState":{"x":[{"value":4},{"value":0},{"value":105553116356016},{"value":0},{"value":0},{"value":0},{"value":5},{"value":0},{"value":6133035232},{"value":0},{"value":105553181356544},{"value":15},{"value":4},{"value":105553181356592},{"value":72057602293671329,"symbolLocation":72057594037927937,"symbol":"OBJC_CLASS_$___NSCFArray"},{"value":8255743392,"symbolLocation":0,"symbol":"OBJC_CLASS_$___NSCFArray"},{"value":93},{"value":6446612980,"symbolLocation":0,"symbol":"-[__NSCFArray objectAtIndex:]"},{"value":0},{"value":32},{"value":8255765512,"symbolLocation":0,"symbol":"__CFActiveSocketsLock"},{"value":1},{"value":4667821904},{"value":12},{"value":105553116356016},{"value":105553116356032},{"value":0},{"value":8129048896,"symbolLocation":0,"symbol":"__kCFNull"},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":6446764204},"cpsr":{"value":1610616832},"fp":{"value":6133034944},"sp":{"value":6133001168},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4462967564},"far":{"value":0}},"frames":[{"imageOffset":47884,"symbol":"__select","symbolLocation":8,"imageIndex":9},{"imageOffset":639148,"symbol":"__CFSocketManager","symbolLocation":612,"imageIndex":13},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":10},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":10}]},{"id":16655256,"name":"hades","threadState":{"x":[{"value":260},{"value":0},{"value":256},{"value":0},{"value":0},{"value":160},{"value":0},{"value":0},{"value":6133608104},{"value":0},{"value":105553171908872},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":129024},{"value":0},{"value":105553171908848},{"value":105553171908912},{"value":6133608672},{"value":0},{"value":0},{"value":256},{"value":257},{"value":512},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4477663692},"cpsr":{"value":1610616832},"fp":{"value":6133608224},"sp":{"value":6133608080},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4462938736},"far":{"value":0}},"frames":[{"imageOffset":19056,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":9},{"imageOffset":31180,"symbol":"_pthread_cond_wait","symbolLocation":1216,"imageIndex":10},{"imageOffset":67288,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&)","symbolLocation":24,"imageIndex":20},{"imageOffset":1467464,"symbol":"hermes::vm::HadesGC::Executor::worker()","symbolLocation":112,"imageIndex":7},{"imageOffset":1467308,"symbol":"void* std::__1::__thread_proxy[abi:v160006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, hermes::vm::HadesGC::Executor::Executor()::'lambda'()>>(void*)","symbolLocation":44,"imageIndex":7},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":10},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":10}]},{"id":16655291,"name":"com.apple.CFStream.LegacyThread","threadState":{"x":[{"value":268451845},{"value":21592279046},{"value":8589934592},{"value":189128884879360},{"value":0},{"value":189128884879360},{"value":2},{"value":4294967295},{"value":18446744073709550527},{"value":44035},{"value":0},{"value":1},{"value":44035},{"value":3072},{"value":0},{"value":137438953472000},{"value":18446744073709551569},{"value":137438953504002},{"value":0},{"value":4294967295},{"value":2},{"value":189128884879360},{"value":0},{"value":189128884879360},{"value":6134177784},{"value":8589934592},{"value":21592279046},{"value":21592279046},{"value":4412409862}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4462996352},"cpsr":{"value":4096},"fp":{"value":6134177632},"sp":{"value":6134177552},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4462925168},"far":{"value":0}},"frames":[{"imageOffset":5488,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":9},{"imageOffset":76672,"symbol":"mach_msg2_internal","symbolLocation":76,"imageIndex":9},{"imageOffset":38808,"symbol":"mach_msg_overwrite","symbolLocation":532,"imageIndex":9},{"imageOffset":6376,"symbol":"mach_msg","symbolLocation":20,"imageIndex":9},{"imageOffset":579268,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":156,"imageIndex":13},{"imageOffset":556452,"symbol":"__CFRunLoopRun","symbolLocation":1148,"imageIndex":13},{"imageOffset":554260,"symbol":"CFRunLoopRunSpecific","symbolLocation":572,"imageIndex":13},{"imageOffset":699840,"symbol":"_legacyStreamRunLoop_workThread","symbolLocation":260,"imageIndex":13},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":10},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":10}]},{"id":16655680,"name":"hades","threadState":{"x":[{"value":260},{"value":0},{"value":0},{"value":0},{"value":0},{"value":160},{"value":0},{"value":0},{"value":6126186152},{"value":0},{"value":105553171853192},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":0},{"value":0},{"value":105553171853168},{"value":105553171853232},{"value":6126186720},{"value":0},{"value":0},{"value":0},{"value":1},{"value":256},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4477663692},"cpsr":{"value":1610616832},"fp":{"value":6126186272},"sp":{"value":6126186128},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4462938736},"far":{"value":0}},"frames":[{"imageOffset":19056,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":9},{"imageOffset":31180,"symbol":"_pthread_cond_wait","symbolLocation":1216,"imageIndex":10},{"imageOffset":67288,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&)","symbolLocation":24,"imageIndex":20},{"imageOffset":1467464,"symbol":"hermes::vm::HadesGC::Executor::worker()","symbolLocation":112,"imageIndex":7},{"imageOffset":1467308,"symbol":"void* std::__1::__thread_proxy[abi:v160006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, hermes::vm::HadesGC::Executor::Executor()::'lambda'()>>(void*)","symbolLocation":44,"imageIndex":7},{"imageOffset":29716,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":10},{"imageOffset":9696,"symbol":"thread_start","symbolLocation":8,"imageIndex":10}]}],
  "usedImages" : [
  {
    "source" : "P",
    "arch" : "arm64e",
    "base" : 4464033792,
    "size" : 573440,
    "uuid" : "37bbc384-0755-31c7-a808-0ed49e44dd8e",
    "path" : "\/usr\/lib\/dyld",
    "name" : "dyld"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4465344512,
    "size" : 49152,
    "uuid" : "cd1bd3cb-1477-3dca-8afc-cff937b3025d",
    "path" : "\/Volumes\/VOLUME\/*\/libobjc-trampolines.dylib",
    "name" : "libobjc-trampolines.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4461576192,
    "CFBundleShortVersionString" : "0.0.2",
    "CFBundleIdentifier" : "live.100ms.HMS.Analytics",
    "size" : 32768,
    "uuid" : "8dfd1681-5c7b-3d3b-9e36-3507813dcc3a",
    "path" : "\/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/F2DAB3E6-B36F-4938-A648-C9D838228E39\/data\/Containers\/Bundle\/Application\/DE6CAFFC-853D-4D39-A28E-095E50C3AC48\/PatientDev.app\/Frameworks\/HMSAnalyticsSDK.framework\/HMSAnalyticsSDK",
    "name" : "HMSAnalyticsSDK",
    "CFBundleVersion" : "1"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4461903872,
    "CFBundleShortVersionString" : "0.0.9",
    "CFBundleIdentifier" : "live.100ms.HMS.ScreenShare",
    "size" : 98304,
    "uuid" : "a9b1a2e7-9588-3086-999f-2f4213ea1317",
    "path" : "\/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/F2DAB3E6-B36F-4938-A648-C9D838228E39\/data\/Containers\/Bundle\/Application\/DE6CAFFC-853D-4D39-A28E-095E50C3AC48\/PatientDev.app\/Frameworks\/HMSBroadcastExtensionSDK.framework\/HMSBroadcastExtensionSDK",
    "name" : "HMSBroadcastExtensionSDK",
    "CFBundleVersion" : "14"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4462100480,
    "CFBundleShortVersionString" : "0.0.2",
    "CFBundleIdentifier" : "live.100ms.HMS.HLSPlayer",
    "size" : 81920,
    "uuid" : "ccd0fa8b-8759-3bda-9d07-c52f7d331824",
    "path" : "\/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/F2DAB3E6-B36F-4938-A648-C9D838228E39\/data\/Containers\/Bundle\/Application\/DE6CAFFC-853D-4D39-A28E-095E50C3AC48\/PatientDev.app\/Frameworks\/HMSHLSPlayerSDK.framework\/HMSHLSPlayerSDK",
    "name" : "HMSHLSPlayerSDK",
    "CFBundleVersion" : "1"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4482088960,
    "CFBundleShortVersionString" : "1.15.0",
    "CFBundleIdentifier" : "live.100ms.HMS",
    "size" : 3145728,
    "uuid" : "187f375b-7e1b-3d32-b427-2cbf781c8c0d",
    "path" : "\/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/F2DAB3E6-B36F-4938-A648-C9D838228E39\/data\/Containers\/Bundle\/Application\/DE6CAFFC-853D-4D39-A28E-095E50C3AC48\/PatientDev.app\/Frameworks\/HMSSDK.framework\/HMSSDK",
    "name" : "HMSSDK",
    "CFBundleVersion" : "13"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4497293312,
    "CFBundleShortVersionString" : "1.0",
    "CFBundleIdentifier" : "org.webrtc.WebRTC",
    "size" : 9961472,
    "uuid" : "4c4c4400-5555-3144-a1d3-6cc12c1cc819",
    "path" : "\/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/F2DAB3E6-B36F-4938-A648-C9D838228E39\/data\/Containers\/Bundle\/Application\/DE6CAFFC-853D-4D39-A28E-095E50C3AC48\/PatientDev.app\/Frameworks\/WebRTC.framework\/WebRTC",
    "name" : "WebRTC",
    "CFBundleVersion" : "1.0.0"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4508368896,
    "CFBundleShortVersionString" : "0.12.0",
    "CFBundleIdentifier" : "dev.hermesengine.iphonesimulator",
    "size" : 3178496,
    "uuid" : "04b8008c-a953-336f-8043-1540012d2df6",
    "path" : "\/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/F2DAB3E6-B36F-4938-A648-C9D838228E39\/data\/Containers\/Bundle\/Application\/DE6CAFFC-853D-4D39-A28E-095E50C3AC48\/PatientDev.app\/Frameworks\/hermes.framework\/hermes",
    "name" : "hermes",
    "CFBundleVersion" : "0.12.0"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4461445120,
    "size" : 32768,
    "uuid" : "b7159952-fab4-38ce-a131-446d54c54afc",
    "path" : "\/usr\/lib\/system\/libsystem_platform.dylib",
    "name" : "libsystem_platform.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4462919680,
    "size" : 245760,
    "uuid" : "0c657561-0a7d-344e-838f-109a718679cf",
    "path" : "\/usr\/lib\/system\/libsystem_kernel.dylib",
    "name" : "libsystem_kernel.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4477632512,
    "size" : 65536,
    "uuid" : "f0346f94-d1b1-311f-9ac1-aa8107c597ad",
    "path" : "\/usr\/lib\/system\/libsystem_pthread.dylib",
    "name" : "libsystem_pthread.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4342398976,
    "CFBundleShortVersionString" : "1.0.0",
    "CFBundleIdentifier" : "com.hellowellness.patient.dev",
    "size" : 42582016,
    "uuid" : "465f2b92-20e3-3f99-87e1-68d89b530df9",
    "path" : "\/Users\/USER\/Library\/Developer\/CoreSimulator\/Devices\/F2DAB3E6-B36F-4938-A648-C9D838228E39\/data\/Containers\/Bundle\/Application\/DE6CAFFC-853D-4D39-A28E-095E50C3AC48\/PatientDev.app\/PatientDev",
    "name" : "PatientDev",
    "CFBundleVersion" : "1"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 4462346240,
    "size" : 311296,
    "uuid" : "496faa0c-90ce-3140-9e23-1f02a673b817",
    "path" : "\/Volumes\/VOLUME\/*\/dyld_sim",
    "name" : "dyld_sim"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 6446125056,
    "CFBundleShortVersionString" : "6.9",
    "CFBundleIdentifier" : "com.apple.CoreFoundation",
    "size" : 3883008,
    "uuid" : "7d1f50b3-ed7d-3987-bced-ad6779b49c86",
    "path" : "\/Volumes\/VOLUME\/*\/CoreFoundation.framework\/CoreFoundation",
    "name" : "CoreFoundation",
    "CFBundleVersion" : "2420"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 6693072896,
    "CFBundleShortVersionString" : "1.0",
    "CFBundleIdentifier" : "com.apple.GraphicsServices",
    "size" : 36864,
    "uuid" : "4a4b088d-4b30-3333-87b4-a40533ac5580",
    "path" : "\/Volumes\/VOLUME\/*\/GraphicsServices.framework\/GraphicsServices",
    "name" : "GraphicsServices",
    "CFBundleVersion" : "1.0"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 6517919744,
    "CFBundleShortVersionString" : "1.0",
    "CFBundleIdentifier" : "com.apple.UIKitCore",
    "size" : 26869760,
    "uuid" : "5354928b-4688-337f-b9fc-835aa5aa3543",
    "path" : "\/Volumes\/VOLUME\/*\/UIKitCore.framework\/UIKitCore",
    "name" : "UIKitCore",
    "CFBundleVersion" : "7439.1.106"
  },
  {
    "size" : 0,
    "source" : "A",
    "base" : 0,
    "uuid" : "00000000-0000-0000-0000-000000000000"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 6450528256,
    "CFBundleShortVersionString" : "6.9",
    "CFBundleIdentifier" : "com.apple.Foundation",
    "size" : 11304960,
    "uuid" : "0480a70b-2076-3964-b6e5-3c8d92b1d9dc",
    "path" : "\/Volumes\/VOLUME\/*\/Foundation.framework\/Foundation",
    "name" : "Foundation",
    "CFBundleVersion" : "2420"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 6443425792,
    "size" : 16381,
    "uuid" : "1b7f0e87-abc6-30a5-800a-49260237e5c8",
    "path" : "\/Volumes\/VOLUME\/*\/libsystem_blocks.dylib",
    "name" : "libsystem_blocks.dylib"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 6512869376,
    "CFBundleShortVersionString" : "1.0",
    "CFBundleIdentifier" : "com.apple.CFNetwork",
    "size" : 3747840,
    "uuid" : "98afd9b7-9e45-3c02-a8d8-b3118d48efdf",
    "path" : "\/Volumes\/VOLUME\/*\/CFNetwork.framework\/CFNetwork",
    "name" : "CFNetwork",
    "CFBundleVersion" : "1494.0.7"
  },
  {
    "source" : "P",
    "arch" : "arm64",
    "base" : 6445441024,
    "size" : 532480,
    "uuid" : "df3f2e78-a676-3e41-88e0-69f3dc6972c8",
    "path" : "\/Volumes\/VOLUME\/*\/libc++.1.dylib",
    "name" : "libc++.1.dylib"
  }
],
  "sharedCache" : {
  "base" : 6442450944,
  "size" : 3267182592,
  "uuid" : "682f95ad-b14d-30e8-aaf8-b618d77a5de1"
},
  "vmSummary" : "ReadOnly portion of Libraries: Total=1.8G resident=0K(0%) swapped_out_or_unallocated=1.8G(100%)\nWritable regions: Total=843.0M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=843.0M(100%)\n\n                                VIRTUAL   REGION \nREGION TYPE                        SIZE    COUNT (non-coalesced) \n===========                     =======  ======= \nActivity Tracing                   256K        1 \nColorSync                          144K        5 \nCoreAnimation                      240K        3 \nFoundation                          16K        1 \nIOSurface                         13.7M        2 \nKernel Alloc Once                   32K        1 \nMALLOC                           771.4M      797 \nMALLOC guard page                  256K       16 \nMach message                        16K        1 \nSQLite page cache                  384K        3 \nSTACK GUARD                       56.2M       16 \nStack                             16.5M       17 \nVM_ALLOCATE                       38.7M       36 \n__DATA                            33.5M      904 \n__DATA_CONST                      91.8M      924 \n__DATA_DIRTY                       107K       11 \n__FONT_DATA                          4K        1 \n__LINKEDIT                       866.0M       14 \n__OBJC_RO                         72.5M        1 \n__OBJC_RW                         2509K        1 \n__TEXT                           932.1M      937 \ndyld private memory                3.1G       17 \nmapped file                       43.5M      100 \nshared memory                       16K        1 \n===========                     =======  ======= \nTOTAL                              6.0G     3810 \n",
  "legacyInfo" : {
  "threadTriggered" : {
    "name" : "com.facebook.react.runtime.JavaScript"
  }
},
  "logWritingSignature" : "76c2524dd062899bd89cce89f44a551c7123649a",
  "trialInfo" : {
  "rollouts" : [
    {
      "rolloutId" : "64628732bf2f5257dedc8988",
      "factorPackIds" : {

      },
      "deploymentId" : 240000001
    },
    {
      "rolloutId" : "64c025b28b7f0e739e4fbe58",
      "factorPackIds" : {

      },
      "deploymentId" : 240000019
    }
  ],
  "experiments" : [
    {
      "treatmentId" : "c47ab4cc-c9c3-4b5d-a87c-e2433ce02597",
      "experimentId" : "6639bc6ba73d460582162323",
      "deploymentId" : 400000006
    },
    {
      "treatmentId" : "45f4e2a5-551b-4bc2-a2dc-19c244dda8f8",
      "experimentId" : "6643969b3099cf28e049862f",
      "deploymentId" : 400000007
    }
  ]
}
}

Model: MacBookPro18,3, BootROM 10151.121.1, proc 8:6:2 processors, 16 GB, SMC 
Graphics: Apple M1 Pro, Apple M1 Pro, Built-In
Display: S22B300, 1600 x 900, Main, MirrorOff, Online
Display: Color LCD, 3024 x 1964 Retina, MirrorOff, Online
Memory Module: LPDDR5, Samsung
AirPort: spairport_wireless_card_type_wifi (0x14E4, 0x4387), wl0: Apr  4 2024 20:37:43 version 20.103.14.0.8.7.174 FWID 01-95f1e684
AirPort: 
Bluetooth: Version (null), 0 services, 0 devices, 0 incoming serial ports
Network Service: Wi-Fi, AirPort, en0
USB Device: USB31Bus
USB Device: USB31Bus
USB Device: USB31Bus
Thunderbolt Bus: MacBook Pro, Apple Inc.
Thunderbolt Bus: MacBook Pro, Apple Inc.
Thunderbolt Bus: MacBook Pro, Apple Inc.
ygit commented 2 months ago

@RajeshPandey057 Need following things:

RajeshPandey057 commented 2 months ago
{
  "name": "hms-test",
  "main": "expo-router/entry",
  "version": "1.0.0",
  "private": true,
  "jest": {
    "preset": "jest-expo"
  },
  "license": "UNLICENSED",
  "author": "Raj",
  "engines": {
    "pnpm": ">= 8.0.0",
    "yarn": "Please use Yarn for EXPO compatibility instead of pnpm.",
    "npm": "Please use Yarn for EXPO compatibility instead of npm."
  },
  "scripts": {
    "lint": "expo lint",
    "ios": "expo run:ios",
    "web": "expo start --web",
    "test": "jest --watchAll",
    "android": "expo run:android",
    "clean": "expo prebuild --clean",
    "iphone": "expo run:ios --device",
    "dev": "expo  start -c --dev-client",
    "prepare": "node .husky/install.mjs"
  },
  "dependencies": {
   "@100mslive/react-native-hms": "^1.10.9",
    "@100mslive/react-native-room-kit": "^1.2.2",
    "@100mslive/types-prebuilt": "^0.12.11",
    "@commitlint/cli": "^19.4.0",
    "@commitlint/config-conventional": "^19.2.2",
    "@commitlint/types": "^19.0.3",
    "@expo-google-fonts/inter": "^0.2.3",
    "@expo-google-fonts/manrope": "^0.2.3",
    "@expo/html-elements": "^0.10.1",
    "@gorhom/bottom-sheet": "^4.6.4",
    "@hookform/resolvers": "^3.9.0",
    "@radix-ui/react-progress": "^1.1.0",
    "@radix-ui/react-tooltip": "^1.1.2",
    "@react-native-community/blur": "^4.4.0",
    "@react-native-community/datetimepicker": "^8.0.1",
    "@react-native-firebase/app": "^20.3.0",
    "@react-native-firebase/auth": "^20.3.0",
    "@react-native-firebase/crashlytics": "^20.3.0",
    "@react-native-masked-view/masked-view": "0.3.1",
    "@react-native-segmented-control/segmented-control": "^2.5.2",
    "@react-navigation/material-top-tabs": "^6.6.14",
    "@react-navigation/native": "^6.1.18",
    "@rn-primitives/alert-dialog": "^1.0.3",
    "@rn-primitives/aspect-ratio": "^1.0.3",
    "@rn-primitives/avatar": "~1.0.3",
    "@rn-primitives/checkbox": "^1.0.3",
    "@rn-primitives/collapsible": "^1.0.3",
    "@rn-primitives/context-menu": "^1.0.3",
    "@rn-primitives/dialog": "^1.0.3",
    "@rn-primitives/dropdown-menu": "^1.0.3",
    "@rn-primitives/hover-card": "^1.0.3",
    "@rn-primitives/label": "^1.0.3",
    "@rn-primitives/menubar": "^1.0.3",
    "@rn-primitives/navigation-menu": "^1.0.3",
    "@rn-primitives/popover": "^1.0.3",
    "@rn-primitives/portal": "~1.0.3",
    "@rn-primitives/progress": "~1.0.3",
    "@rn-primitives/radio-group": "^1.0.3",
    "@rn-primitives/select": "^1.0.4",
    "@rn-primitives/separator": "^1.0.3",
    "@rn-primitives/slot": "~1.0.3",
    "@rn-primitives/switch": "^1.0.3",
    "@rn-primitives/table": "^1.0.3",
    "@rn-primitives/tabs": "^1.0.3",
    "@rn-primitives/toggle": "^1.0.3",
    "@rn-primitives/toggle-group": "^1.0.3",
    "@rn-primitives/tooltip": "~1.0.3",
    "@rn-primitives/types": "~1.0.3",
    "@shopify/flash-list": "1.6.4",
    "@stripe/stripe-react-native": "0.37.2",
    "@tanstack/react-query": "^5.51.23",
    "axios": "^1.7.3",
    "babel-plugin-module-resolver": "^5.0.2",
    "class-variance-authority": "^0.7.0",
    "clsx": "^2.1.1",
    "dayjs": "^1.11.12",
    "expo": "~51.0.26",
    "expo-blur": "~13.0.2",
    "expo-build-properties": "~0.12.5",
    "expo-camera": "~15.0.14",
    "expo-constants": "~16.0.2",
    "expo-dev-client": "~4.0.22",
    "expo-device": "~6.0.2",
    "expo-font": "~12.0.9",
    "expo-haptics": "~13.0.1",
    "expo-image": "~1.12.13",
    "expo-linear-gradient": "~13.0.2",
    "expo-linking": "~6.3.1",
    "expo-local-authentication": "~14.0.1",
    "expo-localization": "^15.0.3",
    "expo-navigation-bar": "~3.0.7",
    "expo-notifications": "~0.28.15",
    "expo-router": "~3.5.21",
    "expo-splash-screen": "~0.27.5",
    "expo-status-bar": "~1.12.1",
    "expo-system-ui": "~3.0.7",
    "expo-tracking-transparency": "~4.0.2",
    "expo-updates": "~0.25.22",
    "expo-web-browser": "~13.0.3",
    "i18next": "^23.12.2",
    "install": "^0.13.0",
    "jscodeshift": "17.0.0",
    "lottie-react-native": "6.7.0",
    "nativewind": "4.0.36",
    "react": "18.2.0",
    "react-dom": "18.2.0",
    "react-hook-form": "^7.52.2",
    "react-i18next": "^15.0.1",
    "react-native": "0.74.5",
    "react-native-gesture-handler": "~2.16.2",
    "react-native-iconify": "^1.0.2",
    "react-native-linear-gradient": "^2.8.3",
    "react-native-mmkv": "3.0.0-beta.7",
    "react-native-modal": "^13.0.1",
    "react-native-pager-view": "6.3.0",
    "react-native-reanimated": "~3.10.1",
    "react-native-root-siblings": "^5.0.1",
    "react-native-root-toast": "^3.6.0",
    "react-native-safe-area-context": "4.10.5",
    "react-native-screens": "~3.31.1",
    "react-native-simple-toast": "^3.3.1",
    "react-native-svg": "15.2.0",
    "react-native-tab-view": "^3.5.2",
    "react-native-toastable": "^0.5.0",
    "react-native-ui-datepicker": "^2.0.3",
    "react-native-web": "~0.19.12",
    "react-native-webview": "13.8.6",
    "react-phone-number-input": "^3.4.5",
    "tailwind-merge": "^2.4.0",
    "tailwindcss-animate": "^1.0.7",
    "zod": "^3.23.8",
    "zustand": "^4.5.4"
  },
  "devDependencies": {
    "@babel/core": "^7.25.2",
    "@types/jest": "^29.5.12",
    "@types/react": "~18.2.79",
    "@types/react-test-renderer": "^18.3.0",
    "eslint": "^8",
    "eslint-config-airbnb": "19.0.4",
    "eslint-config-expo": "^7.1.2",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-prettier": "^5.2.1",
    "eslint-plugin-react": "^7.35.0",
    "eslint-plugin-react-hooks": "^4.6.2",
    "husky": "^9.1.4",
    "jest": "^29.7.0",
    "jest-expo": "~51.0.3",
    "lint-staged": "^15.2.9",
    "metro": "^0.80.10",
    "prettier": "^3.3.3",
    "prettier-plugin-tailwindcss": "^0.6.6",
    "react-native-svg-transformer": "^1.5.0",
    "react-test-renderer": "18.3.1",
    "tailwindcss": "^3.4.10",
    "typescript": "~5.3.3",
    "typescript-eslint": "^8.1.0"
  },
  "expo": {
    "doctor": {
      "reactNativeDirectoryCheck": {
        "enabled": true,
        "listUnknownPackages": false
      }
    }
  },
  "packageManager": "pnpm@9.6.0+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e"
}

Also attaching my app.json

/* eslint-env node */
const IS_DEV = process.env.APP_VARIANT === "development";

export default {
  slug: "test",
  version: "1.0.0",
  privacy: "hidden",
  experiments: {
    typedRoutes: true,
  },
  runtimeVersion: {
    policy: "appVersion",
  },
  orientation: "portrait",
  scheme: "hidden",
  userInterfaceStyle: "automatic",
  icon: "./assets/image/icon.png",
  platforms: ["ios", "android", "web"],

  splash: {
    resizeMode: "contain",
    backgroundColor: "#ffffff",
    image: "./assets/image/splash.png",
  },

  ios: {
    supportsTablet: true,
    entitlements: {
      "aps-environment": "production",
    },
    googleServicesFile: IS_DEV
      ? "./GoogleService-Info-Dev.plist"
      : "./GoogleService-Info.plist",
    bundleIdentifier: IS_DEV
      ? "com.hidden.Test.dev"
      : "com.hidden.Test",
  },
  extra: {
    router: {
      origin: false,
    },
    eas: {
      projectId: "44310d0c-4890-46eb-82f0-46edc55006fe",
    },
  },
  web: {
    bundler: "metro",
    output: "static",
    favicon: "./assets/image/favicon.png",
  },
  name: IS_DEV ? "Test-Dev" : "Test",
  description: "Test app for hidden",
  env: {
    NODE_OPTIONS: "--max-old-space-size=4096",
  },
  android: {
    googleServicesFile: IS_DEV
      ? "./google-services-dev.json"
      : "./google-services.json",
    package: IS_DEV
      ? "com.hidden.Test.dev"
      : "com.hidden.Test",

    permissions: [
      "android.permission.BLUETOOTH",
      "android.permission.BLUETOOTH_CONNECT",
      "android.permission.ACCESS_NETWORK_STATE",
      "android.permission.CHANGE_NETWORK_STATE",
      "android.permission.MODIFY_AUDIO_SETTINGS",
    ],
    adaptiveIcon: {
      backgroundColor: "#ffffff",
      foregroundImage: "./assets/image/adaptive-icon.png",
    },
  },

  githubUrl: "https://github.com/hidden/test",
  updates: {
    url: "https://u.expo.dev/44310d0c-46eb-82f0-46edc55006fe",
  },

  plugins: [
    "expo-router",
    "expo-localization",
    "@react-native-firebase/app",
    "@react-native-firebase/auth",
    [
      "expo-build-properties",
      {
        ios: {
          deploymentTarget: "14.0",
          newArchEnabled: true,
          useFrameworks: "static",
        },
        android: { minSdkVersion: 24, newArchEnabled: true },
      },
    ],
    "@react-native-firebase/crashlytics",
    [
      "@stripe/stripe-react-native",
      {
        enableGooglePay: true,
        merchantIdentifier: "merchant.com.hidden",
      },
    ],
    [
      "expo-local-authentication",
      {
        faceIDPermission:
          "Allow $(PRODUCT_NAME) to use Face ID to secure your data.",
      },
    ],
    [
      "expo-camera",
      {
        recordAudioAndroid: true,
        microphonePermission:
          "Allowe $(PRODUCT_NAME) to access your microphone for video calls",
        cameraPermission:
          "$(PRODUCT_NAME) requires access to your camera for video calls",
      },
    ],

    [
      "expo-tracking-transparency",
      {
        userTrackingPermission:
          "This identifier will be used to deliver personalized experience to you.",
      },
    ],
  ],
};
ygit commented 2 months ago

@RajeshPandey057 I have created an app with Expo 51 + 100ms Prebuilt which works fine, please check it here: https://github.com/100mslive/100ms-react-native/tree/expo51/sample-apps/rnhms-expo-demo

RajeshPandey057 commented 2 months ago

Hey @ygit , Expo 51 and 100ms is definitely working. No issues there, Issue is with new architecture . I have been using it lately and I do not want to go back as I will need to downgrade or replace many other dependencies. And anyway new architecture is smaller, faster and going to be default in future so sooner or later 100 ms needs to migrate to new architecture.

ygit commented 2 months ago

Got it @RajeshPandey057 Yes, supporting the New Architecture is on our roadmap