mediapipe icon indicating copy to clipboard operation
mediapipe copied to clipboard

Glog linker duplicate errors in react-native

Open kslbdev opened this issue 5 months ago • 1 comments

OS Platform and Distribution

IOS

Compiler version

No response

Programming Language and version

C++

Installed using virtualenv? pip? Conda?(if python)

No response

MediaPipe version

Latest

Bazel version

No response

XCode and Tulsi versions (if iOS)

No response

Android SDK and NDK versions (if android)

No response

Android AAR (if android)

None

OpenCV version (if running on desktop)

No response

Describe the problem

Mediapipe exposes glog symbols which conflict with react-native glog.

I get linker warnings when using it in a react native app, and a crash on launch. Symbols from the graph .a file collide with glog symbols (part of react-native/third_party) I tried rebuilding by adding glog to avoid_deps of the graph libs, but then the collisions happens betweem RN and MediaPipeTasksCommon framework. Adding it to the avoid_deps of MediaPipeTasksCommon as well causes other linker errors. I've been trying for a couple of days to get a working build where glog symbols don't leak out of the libs to no avail

kslbdev avatar Jun 09 '25 15:06 kslbdev

Hi @kslbdev,

Can you please let us know the complete steps you are following Or you can point out to documentation? This info will help us to understand the issue and reproduce it if required.

Thank you!!

kuaashish avatar Jun 10 '25 07:06 kuaashish

This issue has been marked stale because it has no recent activity since 7 days. It will be closed if no further activity occurs. Thank you.

github-actions[bot] avatar Jun 18 '25 02:06 github-actions[bot]

I have the same problem. After adding pod 'MediaPipeTasksVision' to my react-native project, I get warnings during installation (pod install). ⚠️ ld: ignoring duplicate libraries: '-force_load /Users/xxx/Code/my-test-expo-app-20250701/ios/Pods/MediaPipeTasksCommon/frameworks/graph_libraries/libMediaPipeTasksCommon_simulator_graph.a', '-lc++' ⚠️ ld: duplicate symbol 'google::base::Logger::~Logger()' in ┌─ libMediaPipeTasksCommon_simulator_graph.a[arm64]798 └─ libglog.a4

⚠️ ld: duplicate symbol 'google::SetLogDestination(int, char const*)' in ┌─ libMediaPipeTasksCommon_simulator_graph.a[arm64]798 └─ libglog.a4

...

The project runs and works, but at some point the application crashes with an error message.

Triggered by Thread:  5

Thread 0::  Dispatch queue: com.apple.main-thread
0   libsystem_kernel.dylib        	       0x10272cb70 mach_msg2_trap + 8
1   libsystem_kernel.dylib        	       0x10273dfac mach_msg2_internal + 72
2   libsystem_kernel.dylib        	       0x102734c28 mach_msg_overwrite + 480
3   libsystem_kernel.dylib        	       0x10272ced8 mach_msg + 20
4   CoreFoundation                	       0x180427d14 __CFRunLoopServiceMachPort + 156
5   CoreFoundation                	       0x1804226f4 __CFRunLoopRun + 1148
6   CoreFoundation                	       0x180421e3c CFRunLoopRunSpecific + 536
7   GraphicsServices              	       0x190f62d00 GSEventRunModal + 164
8   UIKitCore                     	       0x185bcec98 -[UIApplication _run] + 796
9   UIKitCore                     	       0x185bd3064 UIApplicationMain + 124
10  mytestexpoapp20250701.debug.dylib	       0x1089d14d4 __debug_main_executable_dylib_entry_point + 64 (AppDelegate.swift:6)
11  ???                           	       0x1027e53d8 ???
12  dyld                          	       0x102976b98 start + 6076

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

Thread 2:: com.apple.uikit.eventfetch-thread
0   libsystem_kernel.dylib        	       0x10272cb70 mach_msg2_trap + 8
1   libsystem_kernel.dylib        	       0x10273dfac mach_msg2_internal + 72
2   libsystem_kernel.dylib        	       0x102734c28 mach_msg_overwrite + 480
3   libsystem_kernel.dylib        	       0x10272ced8 mach_msg + 20
4   CoreFoundation                	       0x180427d14 __CFRunLoopServiceMachPort + 156
5   CoreFoundation                	       0x1804226f4 __CFRunLoopRun + 1148
6   CoreFoundation                	       0x180421e3c CFRunLoopRunSpecific + 536
7   Foundation                    	       0x180f22ddc -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 208
8   Foundation                    	       0x180f22ffc -[NSRunLoop(NSRunLoop) runUntilDate:] + 60
9   UIKitCore                     	       0x185c7c724 -[UIEventFetcher threadMain] + 408
10  Foundation                    	       0x180f49b98 __NSThread__start__ + 716
11  libsystem_pthread.dylib       	       0x1026b25f0 _pthread_start + 104
12  libsystem_pthread.dylib       	       0x1026ad998 thread_start + 8

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

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

Thread 5 Crashed:: com.facebook.react.runtime.JavaScript
0   libsystem_kernel.dylib        	       0x102734874 __pthread_kill + 8
1   libsystem_pthread.dylib       	       0x1026b22ec pthread_kill + 264
2   libsystem_c.dylib             	       0x180171ea8 abort + 100
3   mytestexpoapp20250701.debug.dylib	       0x1089c4ac8 google::LogDestination::LogToSinks(int, char const*, char const*, int, google::LogMessageTime const&, char const*, unsigned long) + 256
4   mytestexpoapp20250701.debug.dylib	       0x1089c3ad8 google::LogMessage::SendToLog() + 384
5   mytestexpoapp20250701.debug.dylib	       0x1089c45b4 google::LogMessage::Flush() + 224
6   mytestexpoapp20250701.debug.dylib	       0x1089c4688 google::LogMessage::~LogMessage() + 24
7   mytestexpoapp20250701.debug.dylib	       0x108fca470 facebook::react::UIManagerBinding::dispatchEventToJS(facebook::jsi::Runtime&, facebook::react::EventTarget const*, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&, facebook::react::ReactEventPriority, facebook::react::EventPayload const&) const + 504 (UIManagerBinding.cpp:135)
8   mytestexpoapp20250701.debug.dylib	       0x108fca148 facebook::react::UIManagerBinding::dispatchEvent(facebook::jsi::Runtime&, facebook::react::EventTarget const*, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&, facebook::react::ReactEventPriority, facebook::react::EventPayload const&) const + 472 (UIManagerBinding.cpp:98)
9   mytestexpoapp20250701.debug.dylib	       0x108f3360c facebook::react::Scheduler::Scheduler(facebook::react::SchedulerToolbox const&, facebook::react::UIManagerAnimationDelegate*, facebook::react::SchedulerDelegate*)::$_1::operator()(facebook::jsi::Runtime&, facebook::react::EventTarget const*, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&, facebook::react::ReactEventPriority, facebook::react::EventPayload const&) const::'lambda'(facebook::react::UIManagerBinding const&)::operator()(facebook::react::UIManagerBinding const&) const + 60 (Scheduler.cpp:76)
10  mytestexpoapp20250701.debug.dylib	       0x108f335c4 decltype(std::declval<facebook::react::Scheduler::Scheduler(facebook::react::SchedulerToolbox const&, facebook::react::UIManagerAnimationDelegate*, facebook::react::SchedulerDelegate*)::$_1::operator()(facebook::jsi::Runtime&, facebook::react::EventTarget const*, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&, facebook::react::ReactEventPriority, facebook::react::EventPayload const&) const::'lambda'(facebook::react::UIManagerBinding const&)&>()(std::declval<facebook::react::UIManagerBinding const&>())) std::__1::__invoke[abi:de180100]<facebook::react::Scheduler::Scheduler(facebook::react::SchedulerToolbox const&, facebook::react::UIManagerAnimationDelegate*, facebook::react::SchedulerDelegate*)::$_1::operator()(facebook::jsi::Runtime&, facebook::react::EventTarget const*, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&, facebook::react::ReactEventPriority, facebook::react::EventPayload const&) const::'lambda'(facebook::react::UIManagerBinding const&)&, facebook::react::UIManagerBinding const&>(facebook::react::Scheduler::Scheduler(facebook::react::SchedulerToolbox const&, facebook::react::UIManagerAnimationDelegate*, facebook::react::SchedulerDelegate*)::$_1::operator()(facebook::jsi::Runtime&, facebook::react::EventTarget const*, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&, facebook::react::ReactEventPriority, facebook::react::EventPayload const&) const::'lambda'(facebook::react::UIManagerBinding const&)&, facebook::react::UIManagerBinding const&) + 32 (invoke.h:344)
11  mytestexpoapp20250701.debug.dylib	       0x108f33574 void std::__1::__invoke_void_return_wrapper<void, true>::__call[abi:de180100]<facebook::react::Scheduler::Scheduler(facebook::react::SchedulerToolbox const&, facebook::react::UIManagerAnimationDelegate*, facebook::react::SchedulerDelegate*)::$_1::operator()(facebook::jsi::Runtime&, facebook::react::EventTarget const*, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&, facebook::react::ReactEventPriority, facebook::react::EventPayload const&) const::'lambda'(facebook::react::UIManagerBinding const&)&, facebook::react::UIManagerBinding const&>(facebook::react::Scheduler::Scheduler(facebook::react::SchedulerToolbox const&, facebook::react::UIManagerAnimationDelegate*, facebook::react::SchedulerDelegate*)::$_1::operator()(facebook::jsi::Runtime&, facebook::react::EventTarget const*, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&, facebook::react::ReactEventPriority, facebook::react::EventPayload const&) const::'lambda'(facebook::react::UIManagerBinding const&)&, facebook::react::UIManagerBinding const&) + 32 (invoke.h:419)
12  mytestexpoapp20250701.debug.dylib	       0x108f33548 std::__1::__function::__alloc_func<facebook::react::Scheduler::Scheduler(facebook::react::SchedulerToolbox const&, facebook::react::UIManagerAnimationDelegate*, facebook::react::SchedulerDelegate*)::$_1::operator()(facebook::jsi::Runtime&, facebook::react::EventTarget const*, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&, facebook::react::ReactEventPriority, facebook::react::EventPayload const&) const::'lambda'(facebook::react::UIManagerBinding const&), std::__1::allocator<facebook::react::Scheduler::Scheduler(facebook::react::SchedulerToolbox const&, facebook::react::UIManagerAnimationDelegate*, facebook::react::SchedulerDelegate*)::$_1::operator()(facebook::jsi::Runtime&, facebook::react::EventTarget const*, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&, facebook::react::ReactEventPriority, facebook::react::EventPayload const&) const::'lambda'(facebook::react::UIManagerBinding const&)>, void (facebook::react::UIManagerBinding const&)>::operator()[abi:de180100](facebook::react::UIManagerBinding const&) + 36 (function.h:169)
13  mytestexpoapp20250701.debug.dylib	       0x108f32530 std::__1::__function::__func<facebook::react::Scheduler::Scheduler(facebook::react::SchedulerToolbox const&, facebook::react::UIManagerAnimationDelegate*, facebook::react::SchedulerDelegate*)::$_1::operator()(facebook::jsi::Runtime&, facebook::react::EventTarget const*, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&, facebook::react::ReactEventPriority, facebook::react::EventPayload const&) const::'lambda'(facebook::react::UIManagerBinding const&), std::__1::allocator<facebook::react::Scheduler::Scheduler(facebook::react::SchedulerToolbox const&, facebook::react::UIManagerAnimationDelegate*, facebook::react::SchedulerDelegate*)::$_1::operator()(facebook::jsi::Runtime&, facebook::react::EventTarget const*, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&, facebook::react::ReactEventPriority, facebook::react::EventPayload const&) const::'lambda'(facebook::react::UIManagerBinding const&)>, void (facebook::react::UIManagerBinding const&)>::operator()(facebook::react::UIManagerBinding const&) + 36 (function.h:311)
14  mytestexpoapp20250701.debug.dylib	       0x108fc66ec std::__1::__function::__value_func<void (facebook::react::UIManagerBinding const&)>::operator()[abi:de180100](facebook::react::UIManagerBinding const&) const + 76 (function.h:428)
15  mytestexpoapp20250701.debug.dylib	       0x108fa3d20 std::__1::function<void (facebook::react::UIManagerBinding const&)>::operator()(facebook::react::UIManagerBinding const&) const + 32 (function.h:981)
16  mytestexpoapp20250701.debug.dylib	       0x108fa3c94 facebook::react::UIManager::visitBinding(std::__1::function<void (facebook::react::UIManagerBinding const&)> const&, facebook::jsi::Runtime&) const + 84 (UIManager.cpp:576)
17  mytestexpoapp20250701.debug.dylib	       0x108f31b20 facebook::react::Scheduler::Scheduler(facebook::react::SchedulerToolbox const&, facebook::react::UIManagerAnimationDelegate*, facebook::react::SchedulerDelegate*)::$_1::operator()(facebook::jsi::Runtime&, facebook::react::EventTarget const*, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&, facebook::react::ReactEventPriority, facebook::react::EventPayload const&) const + 152 (Scheduler.cpp:74)
18  mytestexpoapp20250701.debug.dylib	       0x108f31a7c decltype(std::declval<facebook::react::Scheduler::Scheduler(facebook::react::SchedulerToolbox const&, facebook::react::UIManagerAnimationDelegate*, facebook::react::SchedulerDelegate*)::$_1&>()(std::declval<facebook::jsi::Runtime&>(), std::declval<facebook::react::EventTarget const*>(), std::declval<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&>(), std::declval<facebook::react::ReactEventPriority>(), std::declval<facebook::react::EventPayload const&>())) std::__1::__invoke[abi:de180100]<facebook::react::Scheduler::Scheduler(facebook::react::SchedulerToolbox const&, facebook::react::UIManagerAnimationDelegate*, facebook::react::SchedulerDelegate*)::$_1&, facebook::jsi::Runtime&, facebook::react::EventTarget const*, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&, facebook::react::ReactEventPriority, facebook::react::EventPayload const&>(facebook::react::Scheduler::Scheduler(facebook::react::SchedulerToolbox const&, facebook::react::UIManagerAnimationDelegate*, facebook::react::SchedulerDelegate*)::$_1&, facebook::jsi::Runtime&, facebook::react::EventTarget const*&&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&, facebook::react::ReactEventPriority&&, facebook::react::EventPayload const&) + 72 (invoke.h:344)
19  mytestexpoapp20250701.debug.dylib	       0x108f31a04 void std::__1::__invoke_void_return_wrapper<void, true>::__call[abi:de180100]<facebook::react::Scheduler::Scheduler(facebook::react::SchedulerToolbox const&, facebook::react::UIManagerAnimationDelegate*, facebook::react::SchedulerDelegate*)::$_1&, facebook::jsi::Runtime&, facebook::react::EventTarget const*, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&, facebook::react::ReactEventPriority, facebook::react::EventPayload const&>(facebook::react::Scheduler::Scheduler(facebook::react::SchedulerToolbox const&, facebook::react::UIManagerAnimationDelegate*, facebook::react::SchedulerDelegate*)::$_1&, facebook::jsi::Runtime&, facebook::react::EventTarget const*&&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&, facebook::react::ReactEventPriority&&, facebook::react::EventPayload const&) + 64 (invoke.h:419)
20  mytestexpoapp20250701.debug.dylib	       0x108f319b8 std::__1::__function::__alloc_func<facebook::react::Scheduler::Scheduler(facebook::react::SchedulerToolbox const&, facebook::react::UIManagerAnimationDelegate*, facebook::react::SchedulerDelegate*)::$_1, std::__1::allocator<facebook::react::Scheduler::Scheduler(facebook::react::SchedulerToolbox const&, facebook::react::UIManagerAnimationDelegate*, facebook::react::SchedulerDelegate*)::$_1>, void (facebook::jsi::Runtime&, facebook::react::EventTarget const*, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&, facebook::react::ReactEventPriority, facebook::react::EventPayload const&)>::operator()[abi:de180100](facebook::jsi::Runtime&, facebook::react::EventTarget const*&&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&, facebook::react::ReactEventPriority&&, facebook::react::EventPayload const&) + 68 (function.h:169)
21  mytestexpoapp20250701.debug.dylib	       0x108f305c4 std::__1::__function::__func<facebook::react::Scheduler::Scheduler(facebook::react::SchedulerToolbox const&, facebook::react::UIManagerAnimationDelegate*, facebook::react::SchedulerDelegate*)::$_1, std::__1::allocator<facebook::react::Scheduler::Scheduler(facebook::react::SchedulerToolbox const&, facebook::react::UIManagerAnimationDelegate*, facebook::react::SchedulerDelegate*)::$_1>, void (facebook::jsi::Runtime&, facebook::react::EventTarget const*, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&, facebook::react::ReactEventPriority, facebook::react::EventPayload const&)>::operator()(facebook::jsi::Runtime&, facebook::react::EventTarget const*&&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&, facebook::react::ReactEventPriority&&, facebook::react::EventPayload const&) + 68 (function.h:311)
22  mytestexpoapp20250701.debug.dylib	       0x108ea0774 std::__1::__function::__value_func<void (facebook::jsi::Runtime&, facebook::react::EventTarget const*, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&, facebook::react::ReactEventPriority, facebook::react::EventPayload const&)>::operator()[abi:de180100](facebook::jsi::Runtime&, facebook::react::EventTarget const*&&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&, facebook::react::ReactEventPriority&&, facebook::react::EventPayload const&) const + 108 (function.h:428)
23  mytestexpoapp20250701.debug.dylib	       0x108ea02fc std::__1::function<void (facebook::jsi::Runtime&, facebook::react::EventTarget const*, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&, facebook::react::ReactEventPriority, facebook::react::EventPayload const&)>::operator()(facebook::jsi::Runtime&, facebook::react::EventTarget const*, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&, facebook::react::ReactEventPriority, facebook::react::EventPayload const&) const + 72 (function.h:981)
24  mytestexpoapp20250701.debug.dylib	       0x108ea0040 facebook::react::EventQueueProcessor::flushEvents(facebook::jsi::Runtime&, std::__1::vector<facebook::react::RawEvent, std::__1::allocator<facebook::react::RawEvent>>&&) const + 696 (EventQueueProcessor.cpp:92)
25  mytestexpoapp20250701.debug.dylib	       0x108e98ec0 facebook::react::EventQueue::flushEvents(facebook::jsi::Runtime&) const + 192 (EventQueue.cpp:112)
26  mytestexpoapp20250701.debug.dylib	       0x108e98d14 facebook::react::EventQueue::onBeat(facebook::jsi::Runtime&) const + 64 (EventQueue.cpp:95)
27  mytestexpoapp20250701.debug.dylib	       0x108e9e44c facebook::react::EventQueue::EventQueue(facebook::react::EventQueueProcessor, std::__1::unique_ptr<facebook::react::EventBeat, std::__1::default_delete<facebook::react::EventBeat>>)::$_0::operator()(facebook::jsi::Runtime&) const + 36 (EventQueue.cpp:22)
28  mytestexpoapp20250701.debug.dylib	       0x108e9e41c decltype(std::declval<facebook::react::EventQueue::EventQueue(facebook::react::EventQueueProcessor, std::__1::unique_ptr<facebook::react::EventBeat, std::__1::default_delete<facebook::react::EventBeat>>)::$_0&>()(std::declval<facebook::jsi::Runtime&>())) std::__1::__invoke[abi:de180100]<facebook::react::EventQueue::EventQueue(facebook::react::EventQueueProcessor, std::__1::unique_ptr<facebook::react::EventBeat, std::__1::default_delete<facebook::react::EventBeat>>)::$_0&, facebook::jsi::Runtime&>(facebook::react::EventQueue::EventQueue(facebook::react::EventQueueProcessor, std::__1::unique_ptr<facebook::react::EventBeat, std::__1::default_delete<facebook::react::EventBeat>>)::$_0&, facebook::jsi::Runtime&) + 32 (invoke.h:344)
29  mytestexpoapp20250701.debug.dylib	       0x108e9e3cc void std::__1::__invoke_void_return_wrapper<void, true>::__call[abi:de180100]<facebook::react::EventQueue::EventQueue(facebook::react::EventQueueProcessor, std::__1::unique_ptr<facebook::react::EventBeat, std::__1::default_delete<facebook::react::EventBeat>>)::$_0&, facebook::jsi::Runtime&>(facebook::react::EventQueue::EventQueue(facebook::react::EventQueueProcessor, std::__1::unique_ptr<facebook::react::EventBeat, std::__1::default_delete<facebook::react::EventBeat>>)::$_0&, facebook::jsi::Runtime&) + 32 (invoke.h:419)
30  mytestexpoapp20250701.debug.dylib	       0x108e9e3a0 std::__1::__function::__alloc_func<facebook::react::EventQueue::EventQueue(facebook::react::EventQueueProcessor, std::__1::unique_ptr<facebook::react::EventBeat, std::__1::default_delete<facebook::react::EventBeat>>)::$_0, std::__1::allocator<facebook::react::EventQueue::EventQueue(facebook::react::EventQueueProcessor, std::__1::unique_ptr<facebook::react::EventBeat, std::__1::default_delete<facebook::react::EventBeat>>)::$_0>, void (facebook::jsi::Runtime&)>::operator()[abi:de180100](facebook::jsi::Runtime&) + 36 (function.h:169)
31  mytestexpoapp20250701.debug.dylib	       0x108e9d22c std::__1::__function::__func<facebook::react::EventQueue::EventQueue(facebook::react::EventQueueProcessor, std::__1::unique_ptr<facebook::react::EventBeat, std::__1::default_delete<facebook::react::EventBeat>>)::$_0, std::__1::allocator<facebook::react::EventQueue::EventQueue(facebook::react::EventQueueProcessor, std::__1::unique_ptr<facebook::react::EventBeat, std::__1::default_delete<facebook::react::EventBeat>>)::$_0>, void (facebook::jsi::Runtime&)>::operator()(facebook::jsi::Runtime&) + 36 (function.h:311)
32  mytestexpoapp20250701.debug.dylib	       0x108a741c0 std::__1::__function::__value_func<void (facebook::jsi::Runtime&)>::operator()[abi:de180100](facebook::jsi::Runtime&) const + 76 (function.h:428)
33  mytestexpoapp20250701.debug.dylib	       0x108a74168 std::__1::function<void (facebook::jsi::Runtime&)>::operator()(facebook::jsi::Runtime&) const + 32 (function.h:981)
34  mytestexpoapp20250701.debug.dylib	       0x108e82aa0 facebook::react::EventBeat::induce() const::$_0::operator()(facebook::jsi::Runtime&) const + 136 (EventBeat.cpp:70)
35  mytestexpoapp20250701.debug.dylib	       0x108e82a0c decltype(std::declval<facebook::react::EventBeat::induce() const::$_0&>()(std::declval<facebook::jsi::Runtime&>())) std::__1::__invoke[abi:de180100]<facebook::react::EventBeat::induce() const::$_0&, facebook::jsi::Runtime&>(facebook::react::EventBeat::induce() const::$_0&, facebook::jsi::Runtime&) + 32 (invoke.h:344)
36  mytestexpoapp20250701.debug.dylib	       0x108e829bc void std::__1::__invoke_void_return_wrapper<void, true>::__call[abi:de180100]<facebook::react::EventBeat::induce() const::$_0&, facebook::jsi::Runtime&>(facebook::react::EventBeat::induce() const::$_0&, facebook::jsi::Runtime&) + 32 (invoke.h:419)
37  mytestexpoapp20250701.debug.dylib	       0x108e82990 std::__1::__function::__alloc_func<facebook::react::EventBeat::induce() const::$_0, std::__1::allocator<facebook::react::EventBeat::induce() const::$_0>, void (facebook::jsi::Runtime&)>::operator()[abi:de180100](facebook::jsi::Runtime&) + 36 (function.h:169)
38  mytestexpoapp20250701.debug.dylib	       0x108e81750 std::__1::__function::__func<facebook::react::EventBeat::induce() const::$_0, std::__1::allocator<facebook::react::EventBeat::induce() const::$_0>, void (facebook::jsi::Runtime&)>::operator()(facebook::jsi::Runtime&) + 36 (function.h:311)
39  mytestexpoapp20250701.debug.dylib	       0x108a741c0 std::__1::__function::__value_func<void (facebook::jsi::Runtime&)>::operator()[abi:de180100](facebook::jsi::Runtime&) const + 76 (function.h:428)
40  mytestexpoapp20250701.debug.dylib	       0x108a74168 std::__1::function<void (facebook::jsi::Runtime&)>::operator()(facebook::jsi::Runtime&) const + 32 (function.h:981)
41  mytestexpoapp20250701.debug.dylib	       0x109589b74 facebook::react::Task::execute(facebook::jsi::Runtime&, bool) + 592 (Task.cpp:48)
42  mytestexpoapp20250701.debug.dylib	       0x10956f8e4 facebook::react::RuntimeScheduler_Modern::executeTask(facebook::jsi::Runtime&, facebook::react::Task&, bool) const + 136 (RuntimeScheduler_Modern.cpp:382)
43  mytestexpoapp20250701.debug.dylib	       0x1095705d4 facebook::react::RuntimeScheduler_Modern::runEventLoopTick(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>>>) + 324 (RuntimeScheduler_Modern.cpp:328)
44  mytestexpoapp20250701.debug.dylib	       0x10957019c facebook::react::RuntimeScheduler_Modern::runEventLoop(facebook::jsi::Runtime&, bool) + 236 (RuntimeScheduler_Modern.cpp:271)
45  mytestexpoapp20250701.debug.dylib	       0x109577d60 facebook::react::RuntimeScheduler_Modern::scheduleEventLoop()::$_0::operator()(facebook::jsi::Runtime&) const + 44 (RuntimeScheduler_Modern.cpp:253)
46  mytestexpoapp20250701.debug.dylib	       0x109577d28 decltype(std::declval<facebook::react::RuntimeScheduler_Modern::scheduleEventLoop()::$_0&>()(std::declval<facebook::jsi::Runtime&>())) std::__1::__invoke[abi:de180100]<facebook::react::RuntimeScheduler_Modern::scheduleEventLoop()::$_0&, facebook::jsi::Runtime&>(facebook::react::RuntimeScheduler_Modern::scheduleEventLoop()::$_0&, facebook::jsi::Runtime&) + 32 (invoke.h:344)
47  mytestexpoapp20250701.debug.dylib	       0x109577cd8 void std::__1::__invoke_void_return_wrapper<void, true>::__call[abi:de180100]<facebook::react::RuntimeScheduler_Modern::scheduleEventLoop()::$_0&, facebook::jsi::Runtime&>(facebook::react::RuntimeScheduler_Modern::scheduleEventLoop()::$_0&, facebook::jsi::Runtime&) + 32 (invoke.h:419)
48  mytestexpoapp20250701.debug.dylib	       0x109577cac std::__1::__function::__alloc_func<facebook::react::RuntimeScheduler_Modern::scheduleEventLoop()::$_0, std::__1::allocator<facebook::react::RuntimeScheduler_Modern::scheduleEventLoop()::$_0>, void (facebook::jsi::Runtime&)>::operator()[abi:de180100](facebook::jsi::Runtime&) + 36 (function.h:169)
49  mytestexpoapp20250701.debug.dylib	       0x109576b38 std::__1::__function::__func<facebook::react::RuntimeScheduler_Modern::scheduleEventLoop()::$_0, std::__1::allocator<facebook::react::RuntimeScheduler_Modern::scheduleEventLoop()::$_0>, void (facebook::jsi::Runtime&)>::operator()(facebook::jsi::Runtime&) + 36 (function.h:311)
50  mytestexpoapp20250701.debug.dylib	       0x108a741c0 std::__1::__function::__value_func<void (facebook::jsi::Runtime&)>::operator()[abi:de180100](facebook::jsi::Runtime&) const + 76 (function.h:428)
51  mytestexpoapp20250701.debug.dylib	       0x108a74168 std::__1::function<void (facebook::jsi::Runtime&)>::operator()(facebook::jsi::Runtime&) const + 32 (function.h:981)
52  mytestexpoapp20250701.debug.dylib	       0x1093615e4 _ZZZN8facebook5react13ReactInstanceC1ENSt3__110unique_ptrINS0_9JSRuntimeENS2_14default_deleteIS4_EEEENS2_10shared_ptrINS0_18MessageQueueThreadEEENS8_INS0_12TimerManagerEEENS2_8functionIFvRNS_3jsi7RuntimeERKNS0_14JsErrorHandler14ProcessedErrorEEEEPNS0_18jsinspector_modern10HostTargetEENK3$_0clINSD_IFvSG_EEEEEDaT_ENKUlvE_clEv + 148 (ReactInstance.cpp:83)
53  mytestexpoapp20250701.debug.dylib	       0x109361544 _ZNSt3__18__invokeB8de180100IRZZN8facebook5react13ReactInstanceC1ENS_10unique_ptrINS2_9JSRuntimeENS_14default_deleteIS5_EEEENS_10shared_ptrINS2_18MessageQueueThreadEEENS9_INS2_12TimerManagerEEENS_8functionIFvRNS1_3jsi7RuntimeERKNS2_14JsErrorHandler14ProcessedErrorEEEEPNS2_18jsinspector_modern10HostTargetEENK3$_0clINSE_IFvSH_EEEEEDaT_EUlvE_JEEEDTclclsr3stdE7declvalISW_EEspclsr3stdE7declvalIT0_EEEEOSW_DpOSZ_ + 24 (invoke.h:344)
54  mytestexpoapp20250701.debug.dylib	       0x1093614fc _ZNSt3__128__invoke_void_return_wrapperIvLb1EE6__callB8de180100IJRZZN8facebook5react13ReactInstanceC1ENS_10unique_ptrINS4_9JSRuntimeENS_14default_deleteIS7_EEEENS_10shared_ptrINS4_18MessageQueueThreadEEENSB_INS4_12TimerManagerEEENS_8functionIFvRNS3_3jsi7RuntimeERKNS4_14JsErrorHandler14ProcessedErrorEEEEPNS4_18jsinspector_modern10HostTargetEENK3$_0clINSG_IFvSJ_EEEEEDaT_EUlvE_EEEvDpOT_ + 24 (invoke.h:419)
55  mytestexpoapp20250701.debug.dylib	       0x1093614d8 _ZNSt3__110__function12__alloc_funcIZZN8facebook5react13ReactInstanceC1ENS_10unique_ptrINS3_9JSRuntimeENS_14default_deleteIS6_EEEENS_10shared_ptrINS3_18MessageQueueThreadEEENSA_INS3_12TimerManagerEEENS_8functionIFvRNS2_3jsi7RuntimeERKNS3_14JsErrorHandler14ProcessedErrorEEEEPNS3_18jsinspector_modern10HostTargetEENK3$_0clINSF_IFvSI_EEEEEDaT_EUlvE_NS_9allocatorISY_EEFvvEEclB8de180100Ev + 28 (function.h:169)
56  mytestexpoapp20250701.debug.dylib	       0x109360210 _ZNSt3__110__function6__funcIZZN8facebook5react13ReactInstanceC1ENS_10unique_ptrINS3_9JSRuntimeENS_14default_deleteIS6_EEEENS_10shared_ptrINS3_18MessageQueueThreadEEENSA_INS3_12TimerManagerEEENS_8functionIFvRNS2_3jsi7RuntimeERKNS3_14JsErrorHandler14ProcessedErrorEEEEPNS3_18jsinspector_modern10HostTargetEENK3$_0clINSF_IFvSI_EEEEEDaT_EUlvE_NS_9allocatorISY_EEFvvEEclEv + 28 (function.h:311)
57  mytestexpoapp20250701.debug.dylib	       0x108a76368 std::__1::__function::__value_func<void ()>::operator()[abi:de180100]() const + 68 (function.h:428)
58  mytestexpoapp20250701.debug.dylib	       0x108a76318 std::__1::function<void ()>::operator()() const + 24 (function.h:981)
59  mytestexpoapp20250701.debug.dylib	       0x108c89520 facebook::react::tryAndReturnError(std::__1::function<void ()> const&) + 24 (RCTCxxUtils.mm:73)
60  mytestexpoapp20250701.debug.dylib	       0x108cb82c4 facebook::react::RCTMessageThread::tryFunc(std::__1::function<void ()> const&) + 36 (RCTMessageThread.mm:68)
61  mytestexpoapp20250701.debug.dylib	       0x108cbd00c facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_0::operator()() const + 80 (RCTMessageThread.mm:81)
62  mytestexpoapp20250701.debug.dylib	       0x108cbcfb0 decltype(std::declval<facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_0&>()()) std::__1::__invoke[abi:de180100]<facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_0&>(facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_0&) + 24 (invoke.h:344)
63  mytestexpoapp20250701.debug.dylib	       0x108cbcf68 void std::__1::__invoke_void_return_wrapper<void, true>::__call[abi:de180100]<facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_0&>(facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_0&) + 24 (invoke.h:419)
64  mytestexpoapp20250701.debug.dylib	       0x108cbcf44 std::__1::__function::__alloc_func<facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_0, std::__1::allocator<facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_0>, void ()>::operator()[abi:de180100]() + 28 (function.h:169)
65  mytestexpoapp20250701.debug.dylib	       0x108cbbc64 std::__1::__function::__func<facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_0, std::__1::allocator<facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_0>, void ()>::operator()() + 28 (function.h:311)
66  mytestexpoapp20250701.debug.dylib	       0x108a76368 std::__1::__function::__value_func<void ()>::operator()[abi:de180100]() const + 68 (function.h:428)
67  mytestexpoapp20250701.debug.dylib	       0x108a76318 std::__1::function<void ()>::operator()() const + 24 (function.h:981)
68  mytestexpoapp20250701.debug.dylib	       0x108cb805c invocation function for block in facebook::react::RCTMessageThread::runAsync(std::__1::function<void ()>) + 48 (RCTMessageThread.mm:44)
69  CoreFoundation                	       0x180428284 __CFRUNLOOP_IS_CALLING_OUT_TO_A_BLOCK__ + 20
70  CoreFoundation                	       0x1804279e8 __CFRunLoopDoBlocks + 348
71  CoreFoundation                	       0x180422b7c __CFRunLoopRun + 2308
72  CoreFoundation                	       0x180421e3c CFRunLoopRunSpecific + 536
73  mytestexpoapp20250701.debug.dylib	       0x10934bd44 +[RCTJSThreadManager runRunLoop] + 292 (RCTJSThreadManager.mm:102)
74  Foundation                    	       0x180f49b98 __NSThread__start__ + 716
75  libsystem_pthread.dylib       	       0x1026b25f0 _pthread_start + 104
76  libsystem_pthread.dylib       	       0x1026ad998 thread_start + 8

alxpub avatar Jul 01 '25 11:07 alxpub