From 479e533b017cff79ea96758abf3941e17ef7af0d Mon Sep 17 00:00:00 2001 From: Chris Bracken Date: Wed, 31 May 2017 11:32:26 -0700 Subject: [PATCH] Clarify libimobiledevice doctor check message (#10406) This message will be emitted both when libimobiledevice requires updating, or when it has not yet been installed. It's also not specifically the version of Xcode that it's incompatible with, it's the lockdownd daemon, which is actually more closely tied to iTunes. --- packages/flutter_tools/lib/src/ios/ios_workflow.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/flutter_tools/lib/src/ios/ios_workflow.dart b/packages/flutter_tools/lib/src/ios/ios_workflow.dart index 6754b6c1378..c4dff576b1d 100644 --- a/packages/flutter_tools/lib/src/ios/ios_workflow.dart +++ b/packages/flutter_tools/lib/src/ios/ios_workflow.dart @@ -152,7 +152,7 @@ class IOSWorkflow extends DoctorValidator implements Workflow { if (!await hasWorkingLibimobiledevice) { brewStatus = ValidationType.partial; messages.add(new ValidationMessage.error( - 'libimobiledevice is incompatible with the installed Xcode version. To update, run:\n' + 'libimobiledevice is not installed or requires updating. To update, run:\n' ' brew update\n' ' brew uninstall --ignore-dependencies libimobiledevice\n' ' brew install --HEAD libimobiledevice'