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