Skip to content

Commit 7fd3571

Browse files
Jonah Williamsmingwandroid
authored andcommitted
Revert "[flutter_tools] split project parsing/validation into separate function (flutter#64814)" (flutter#65202)
This reverts commit 8eed690.
1 parent c5a2df2 commit 7fd3571

File tree

3 files changed

+149
-178
lines changed

3 files changed

+149
-178
lines changed

packages/flutter_tools/lib/src/ios/devices.dart

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -318,14 +318,14 @@ class IOSDevice extends Device {
318318
// TODO(chinmaygarde): Use mainPath, route.
319319
_logger.printTrace('Building ${package.name} for $id');
320320

321-
// Step 1: Build the precompiled application if necessary.
321+
// Step 1: Build the precompiled/DBC application if necessary.
322322
final XcodeBuildResult buildResult = await buildXcodeProject(
323-
app: package as BuildableIOSApp,
324-
buildInfo: debuggingOptions.buildInfo,
325-
targetOverride: mainPath,
326-
buildForDevice: true,
327-
activeArch: cpuArchitecture,
328-
deviceID: id,
323+
app: package as BuildableIOSApp,
324+
buildInfo: debuggingOptions.buildInfo,
325+
targetOverride: mainPath,
326+
buildForDevice: true,
327+
activeArch: cpuArchitecture,
328+
deviceID: id,
329329
);
330330
if (!buildResult.success) {
331331
_logger.printError('Could not build the precompiled application for the device.');

0 commit comments

Comments
 (0)