From 95fa0dcdc8f3f5036134ebe2acd5f5733ec37846 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Norte?= Date: Mon, 15 Jul 2024 05:38:32 -0700 Subject: [PATCH] Fix broken CI due to missing dependencies Summary: https://github.com/facebook/react-native/pull/45409 broke CI because it didn't set up dependencies correctly. This should fix it. Changelog: [internal] Reviewed By: cipolleschi Differential Revision: D59751194 --- .../ReactAndroid/src/main/jni/react/runtime/jni/CMakeLists.txt | 1 + .../react/runtime/platform/ios/React-RuntimeApple.podspec | 1 + 2 files changed, 2 insertions(+) diff --git a/packages/react-native/ReactAndroid/src/main/jni/react/runtime/jni/CMakeLists.txt b/packages/react-native/ReactAndroid/src/main/jni/react/runtime/jni/CMakeLists.txt index f61819764c0..52a144b3f92 100644 --- a/packages/react-native/ReactAndroid/src/main/jni/react/runtime/jni/CMakeLists.txt +++ b/packages/react-native/ReactAndroid/src/main/jni/react/runtime/jni/CMakeLists.txt @@ -24,6 +24,7 @@ target_link_libraries( rninstance fabricjni react_featureflagsjni + react_render_runtimescheduler turbomodulejsijni fb jsi diff --git a/packages/react-native/ReactCommon/react/runtime/platform/ios/React-RuntimeApple.podspec b/packages/react-native/ReactCommon/react/runtime/platform/ios/React-RuntimeApple.podspec index 589d097f890..70a31084d5e 100644 --- a/packages/react-native/ReactCommon/react/runtime/platform/ios/React-RuntimeApple.podspec +++ b/packages/react-native/ReactCommon/react/runtime/platform/ios/React-RuntimeApple.podspec @@ -56,6 +56,7 @@ Pod::Spec.new do |s| s.dependency "React-cxxreact" s.dependency "React-callinvoker" s.dependency "React-runtimeexecutor" + s.dependency "React-runtimescheduler" s.dependency "React-utils" s.dependency "React-jsi" s.dependency "React-Core/Default"