Commit 2b61e21b authored by xster's avatar xster Committed by GitHub

Change doc references from .xcodeproj to xcworkspace (#8379)

parent b65ed452
...@@ -308,7 +308,7 @@ class IOSDevice extends Device { ...@@ -308,7 +308,7 @@ class IOSDevice extends Device {
if (installationResult != 0) { if (installationResult != 0) {
printError('Could not install ${bundle.path} on $id.'); printError('Could not install ${bundle.path} on $id.');
printError('Try launching Xcode and selecting "Product > Run" to fix the problem:'); printError('Try launching Xcode and selecting "Product > Run" to fix the problem:');
printError(' open ios/Runner.xcodeproj'); printError(' open ios/Runner.xcworkspace');
printError(''); printError('');
return new LaunchResult.failed(); return new LaunchResult.failed();
} }
......
...@@ -223,7 +223,7 @@ Future<Null> diagnoseXcodeBuildFailure(XcodeBuildResult result) async { ...@@ -223,7 +223,7 @@ Future<Null> diagnoseXcodeBuildFailure(XcodeBuildResult result) async {
printError(''); printError('');
} }
printError("Try launching Xcode and selecting 'Product > Build' to fix the problem:"); printError("Try launching Xcode and selecting 'Product > Build' to fix the problem:");
printError(" open ios/Runner.xcodeproj"); printError(" open ios/Runner.xcworkspace");
return; return;
} }
if (result.xcodeBuildExecution != null) { if (result.xcodeBuildExecution != null) {
...@@ -247,7 +247,7 @@ Future<Null> diagnoseXcodeBuildFailure(XcodeBuildResult result) async { ...@@ -247,7 +247,7 @@ Future<Null> diagnoseXcodeBuildFailure(XcodeBuildResult result) async {
Building an iOS app requires a selected Development Team with a Provisioning Profile Building an iOS app requires a selected Development Team with a Provisioning Profile
Please ensure that a Development Team is selected by: Please ensure that a Development Team is selected by:
1- Opening the Flutter project's Xcode target with 1- Opening the Flutter project's Xcode target with
open ios/Runner.xcodeproj open ios/Runner.xcworkspace
2- Select the 'Runner' project in the navigator then the 'Runner' target 2- Select the 'Runner' project in the navigator then the 'Runner' target
in the project settings in the project settings
3- In the 'General' tab, make sure a 'Development Team' is selected\n 3- In the 'General' tab, make sure a 'Development Team' is selected\n
......
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