Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TIMOB-15116]iOS: Adding support for 64 bit iOS7 4-inch simulator. #4673

Merged
merged 2 commits into from
Sep 13, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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.