Skip to content

Commit

Permalink
fix(ios): use correct target for transpiling on ios (#11373)
Browse files Browse the repository at this point in the history
this.minSupportedIosSdk is for the supported iOS SDK's not the supported iOS versions for an app

Fixes TIMOB-27630
  • Loading branch information
ewanharris authored and ssekhri committed Dec 3, 2019
1 parent ec6fbf6 commit c4a998a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iphone/cli/commands/_build.js
Original file line number Diff line number Diff line change
Expand Up @@ -6017,7 +6017,7 @@ iOSBuilder.prototype.copyResources = function copyResources(next) {
resourcesDir: this.xcodeAppDir,
logger: this.logger,
targets: {
ios: this.minSupportedIosSdk
ios: this.minIosVersion
}
}
});
Expand Down

0 comments on commit c4a998a

Please sign in to comment.