Skip to content

Commit

Permalink
fix: podfile deployment target template
Browse files Browse the repository at this point in the history
  • Loading branch information
kasinskas committed Oct 9, 2023
1 parent 628126e commit a313bc2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/engine-rn-tvos/templates/platforms/tvos/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ end

target 'RNVApp' do
config = use_native_modules!
platform :ios, min_ios_version_supported
platform :ios, '{{PLUGIN_DEPLOYMENT_TARGET}}'

# Flags change depending on the env values.
flags = get_default_flags()
Expand All @@ -41,7 +41,7 @@ end

target 'RNVApp-tvOS' do
config = use_native_modules!
platform :tvos, min_ios_version_supported
platform :tvos, '{{PLUGIN_DEPLOYMENT_TARGET}}'

# Flags change depending on the env values.
flags = get_default_flags()
Expand Down
2 changes: 1 addition & 1 deletion packages/engine-rn/templates/platforms/ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ if permissions_required != '' && permissions_required != nil
setup_permissions(permissions_required.split(","))
end

platform :ios, min_ios_version_supported
platform :ios, '{{PLUGIN_DEPLOYMENT_TARGET}}'
prepare_react_native_project!

# If you are using a `react-native-flipper` your iOS build will fail when `NO_FLIPPER=1` is set.
Expand Down

0 comments on commit a313bc2

Please sign in to comment.