Skip to content

Commit

Permalink
Merge pull request #1804 from flexn-io/fix/deployment_target_tvos
Browse files Browse the repository at this point in the history
fix/deployment_target_tvos
  • Loading branch information
ElenaDiachenko authored Nov 28, 2024
2 parents 08f5df0 + cff84ce commit f525ae9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/sdk-apple/src/xcodeParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,9 @@ const _parseXcodeProject = (c: Context, platform: RnvPlatform) =>
if (platform === 'ios') {
xcodeProj.updateBuildProperty('IPHONEOS_DEPLOYMENT_TARGET', deploymentTarget);
}

if (platform === 'tvos') {
xcodeProj.updateBuildProperty('TVOS_DEPLOYMENT_TARGET', deploymentTarget);
}
if (provisionProfileSpecifier) {
xcodeProj.updateBuildProperty('PROVISIONING_PROFILE_SPECIFIER', `"${provisionProfileSpecifier}"`);
}
Expand Down

0 comments on commit f525ae9

Please sign in to comment.