Commit de736f0d authored by Chris Bracken's avatar Chris Bracken Committed by GitHub

Update minimum ios-deploy version to 1.9.2 (#11936)

ios-deploy 1.9.2 includes fixes for a common source of Xcode breakage
(flutter/flutter#4326) with Xcode 8.3.3 + iOS 10.3.3, and is required to
to support Xcode 9 (flutter/flutter#11875).
parent 93438245
......@@ -34,7 +34,7 @@ class IOSWorkflow extends DoctorValidator implements Workflow {
Future<bool> get hasIosDeploy => exitsHappyAsync(<String>['ios-deploy', '--version']);
String get iosDeployMinimumVersion => '1.9.0';
String get iosDeployMinimumVersion => '1.9.2';
Future<String> get iosDeployVersionText async => (await runAsync(<String>['ios-deploy', '--version'])).processResult.stdout.replaceAll('\n', '');
......
......@@ -296,7 +296,7 @@ class IOSWorkflowTestTarget extends IOSWorkflow {
this.hasPythonSixModule: true,
this.hasHomebrew: true,
bool hasIosDeploy: true,
String iosDeployVersionText: '1.9.0',
String iosDeployVersionText: '1.9.2',
bool hasIDeviceInstaller: true,
String macDevMode: 'Developer mode is already enabled.',
}) : hasIosDeploy = new Future<bool>.value(hasIosDeploy),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment