From cfff3fc8784da88cebcb6b4ce2f2202d4ccdc8b1 Mon Sep 17 00:00:00 2001 From: Riccardo Cipolleschi Date: Wed, 10 Sep 2025 16:06:15 +0100 Subject: [PATCH] fix dynamic frameworks --- .../nativemodule/defaults/React-defaultsnativemodule.podspec | 3 ++- .../webperformance/React-webperformancenativemodule.podspec | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/react-native/ReactCommon/react/nativemodule/defaults/React-defaultsnativemodule.podspec b/packages/react-native/ReactCommon/react/nativemodule/defaults/React-defaultsnativemodule.podspec index 1e240daa3d7..dd44c33def2 100644 --- a/packages/react-native/ReactCommon/react/nativemodule/defaults/React-defaultsnativemodule.podspec +++ b/packages/react-native/ReactCommon/react/nativemodule/defaults/React-defaultsnativemodule.podspec @@ -47,9 +47,10 @@ Pod::Spec.new do |s| add_rncore_dependency(s) s.dependency "React-domnativemodule" - s.dependency "React-featureflagsnativemodule" s.dependency "React-microtasksnativemodule" s.dependency "React-idlecallbacksnativemodule" s.dependency "React-webperformancenativemodule" add_dependency(s, "React-RCTFBReactNativeSpec") + add_dependency(s, "React-featureflags") + add_dependency(s, "React-featureflagsnativemodule") end diff --git a/packages/react-native/ReactCommon/react/nativemodule/webperformance/React-webperformancenativemodule.podspec b/packages/react-native/ReactCommon/react/nativemodule/webperformance/React-webperformancenativemodule.podspec index ad9589c38ab..97b52ac93a0 100644 --- a/packages/react-native/ReactCommon/react/nativemodule/webperformance/React-webperformancenativemodule.podspec +++ b/packages/react-native/ReactCommon/react/nativemodule/webperformance/React-webperformancenativemodule.podspec @@ -45,12 +45,14 @@ Pod::Spec.new do |s| s.dependency "React-jsi" s.dependency "React-jsiexecutor" + s.dependency "React-cxxreact" depend_on_js_engine(s) add_rn_third_party_dependencies(s) add_rncore_dependency(s) s.dependency "ReactCommon/turbomodule/core" + add_dependency(s, "React-RCTFBReactNativeSpec") add_dependency(s, "React-performancetimeline") add_dependency(s, "React-runtimeexecutor", :additional_framework_paths => ["platform/ios"])