Skip to content

Commit

Permalink
Merge pull request #4673 from srahim/timob-15116
Browse files Browse the repository at this point in the history
[TIMOB-15116]iOS: Adding support for 64 bit iOS7 4-inch simulator.
  • Loading branch information
vishalduggal committed Sep 13, 2013
2 parents 40722b6 + a0d8e64 commit a7584b2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions iphone/cli/commands/_build.js
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,10 @@ exports.config = function config(logger, config, cli) {
desc: __('in combination with %s flag, start the tall version of the retina device', '--retina'),
hidden: version.lte(ti.manifest.version, '3.0.2')
},
'sim-64bit': {
desc: __('in combination with %s flag & %s flag, start the 64-bit tall version of the retina simulator', '--retina'.cyan, '--tall'.cyan),
hidden: version.lte(ti.manifest.version, '3.1.2')
},
'force-copy': {
default: false,
desc: __('forces files to be copied instead of symlinked for %s builds only', 'simulator'.cyan)
Expand Down
3 changes: 3 additions & 0 deletions iphone/cli/hooks/run.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,9 @@ exports.init = function (logger, config, cli) {
cmd.push('--retina');
if (appc.version.gte(build.iosSimVersion, '6.0.0') && build.iosSimType == 'iphone' && cli.argv.tall) {
cmd.push('--tall');
if (appc.version.gte(build.iosSimVersion, '7.0.0') && build.iosSimType == 'iphone' && cli.argv['sim-64bit']) {
cmd.push('--sim-64bit');
}
}
}
cmd = cmd.join(' ');
Expand Down
Binary file modified support/iphone/ios-sim
Binary file not shown.

0 comments on commit a7584b2

Please sign in to comment.