From 7ff1e447fd1a8a3ed32f437e3d16f06afd646459 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Norte?= Date: Mon, 15 Jul 2024 06:50:39 -0700 Subject: [PATCH] Fix broken CI due to missing dependencies (#45437) Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/45437 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, blakef Differential Revision: D59751194 fbshipit-source-id: 03dafb2d065b2b60142c5828f00703adae0b0052 --- .../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 6299a3d313e..d1b6ffb1492 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"