From 5339d91d71c85acf05c84127aeaa538a70005cfe Mon Sep 17 00:00:00 2001 From: Mihai Blaga Date: Tue, 5 Mar 2024 19:02:45 +0100 Subject: [PATCH] add back INJECT_PLUGIN_PATHS, INJECT_POST_INSTALL --- packages/engine-rn-tvos/templates/platforms/tvos/Podfile | 3 +++ packages/engine-rn/templates/platforms/ios/Podfile | 3 +++ 2 files changed, 6 insertions(+) diff --git a/packages/engine-rn-tvos/templates/platforms/tvos/Podfile b/packages/engine-rn-tvos/templates/platforms/tvos/Podfile index fdde550734..f221c517b1 100644 --- a/packages/engine-rn-tvos/templates/platforms/tvos/Podfile +++ b/packages/engine-rn-tvos/templates/platforms/tvos/Podfile @@ -52,6 +52,8 @@ target 'RNVApp-tvOS' do config = use_native_modules! platform :tvos, '{{INJECT_PLUGIN_DEPLOYMENT_TARGET}}' + {{INJECT_PLUGIN_PATHS}} + use_react_native!( :path => config[:reactNativePath], # Enables Flipper. @@ -79,6 +81,7 @@ post_install do |installer| config[:reactNativePath], :mac_catalyst_enabled => false ) + {{INJECT_POST_INSTALL}} end {{INJECT_PLUGIN_PODFILE_INJECT}} \ No newline at end of file diff --git a/packages/engine-rn/templates/platforms/ios/Podfile b/packages/engine-rn/templates/platforms/ios/Podfile index 0c5c43cb17..80770050c4 100755 --- a/packages/engine-rn/templates/platforms/ios/Podfile +++ b/packages/engine-rn/templates/platforms/ios/Podfile @@ -36,6 +36,8 @@ end target 'RNVApp' do config = use_native_modules! + + {{INJECT_PLUGIN_PATHS}} use_react_native!( :path => config[:reactNativePath], @@ -62,6 +64,7 @@ target 'RNVApp' do config[:reactNativePath], :mac_catalyst_enabled => false ) + {{INJECT_POST_INSTALL}} end end