blob: 55b90d5d394f99859b052c7239284641939a50f6 [file] [log] [blame]
// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import '../../base/file_system.dart';
import '../../base/logger.dart';
import '../../project.dart';
import 'ios_migrator.dart';
// Xcode legacy build system no longer supported by Xcode.
// Set in https://github.com/flutter/flutter/pull/21901/.
// Removed in https://github.com/flutter/flutter/pull/33684.
class XcodeBuildSystemMigration extends IOSMigrator {
XcodeBuildSystemMigration(
IosProject project,
Logger logger,
) : _xcodeWorkspaceSharedSettings = project.xcodeWorkspaceSharedSettings,
super(logger);
final File _xcodeWorkspaceSharedSettings;
@override
bool migrate() {
if (!_xcodeWorkspaceSharedSettings.existsSync()) {
logger.printTrace('Xcode workspace settings not found, skipping migration');
return true;
}
final String contents = _xcodeWorkspaceSharedSettings.readAsStringSync();
// Only delete this file when it is pointing to the legacy build system.
const String legacyBuildSettingsWorkspace = '''
<key>BuildSystemType</key>
<string>Original</string>''';
// contains instead of equals to ignore newline file ending variance.
if (contents.contains(legacyBuildSettingsWorkspace)) {
logger.printStatus('Legacy build system detected, removing ${_xcodeWorkspaceSharedSettings.path}');
_xcodeWorkspaceSharedSettings.deleteSync();
}
return true;
}
}