Skip to content

Commit fb00704

Browse files
authored
Merge branch 'main' into remove-deprecated-library
2 parents 987e6b8 + b3a6959 commit fb00704

471 files changed

Lines changed: 4643 additions & 9922 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.ci/flutter_master.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2ec61af30672ebfaf625d7127dd5c99e1796b949
1+
d117642c18e0d5e3a96ae00d4340b1b0724de24c

.ci/flutter_stable.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ff37bef603469fb030f2b72995ab929ccfc227f0
1+
2c9eb20739dfec95e2c74bd3dfa4601b0a8a36aa

.ci/scripts/create_all_packages_app.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,11 @@ exclusions=("script/configs/exclude_all_packages_app.yaml")
1010
# Add a wasm-specific exclusion file if "--wasm" is specified.
1111
if [[ "$1" == "--wasm" ]]; then
1212
exclusions+=",script/configs/exclude_all_packages_app_wasm.yaml"
13+
shift 1
1314
fi
1415

1516
# Delete ./all_packages if it exists already
1617
rm -rf ./all_packages
1718

1819
dart ./script/tool/bin/flutter_plugin_tools.dart create-all-packages-app \
19-
--output-dir=. --exclude "$exclusions"
20+
--output-dir=. --exclude "$exclusions" "$@"
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
# Copyright 2013 The Flutter Authors
3+
# Use of this source code is governed by a BSD-style license that can be
4+
# found in the LICENSE file.
5+
set -e
6+
7+
flutter config --enable-swift-package-manager

.ci/targets/ios_build_all_packages.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,11 @@ tasks:
22
- name: prepare tool
33
script: .ci/scripts/prepare_tool.sh
44
infra_step: true # Note infra steps failing prevents "always" from running.
5-
- name: download Dart and iOS deps
6-
script: .ci/scripts/tool_runner.sh
7-
args: ["fetch-deps", "--ios", "--supporting-target-platforms-only"]
8-
infra_step: true
95
- name: create all_packages app
106
script: .ci/scripts/create_all_packages_app.sh
7+
# build-examples builds with Swift Package Manager, so run build-all without
8+
# it to test both modes in CI.
9+
args: ["--no-swift-package-manager"]
1110
infra_step: true # Note infra steps failing prevents "always" from running.
1211
- name: build all_packages for iOS debug
1312
script: .ci/scripts/build_all_packages_app.sh

.ci/targets/ios_platform_tests.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,16 @@ tasks:
22
- name: prepare tool
33
script: .ci/scripts/prepare_tool.sh
44
infra_step: true # Note infra steps failing prevents "always" from running.
5+
- name: enable Swift Package Manager
6+
# For consistency between stable and master channels, enable SwiftPM.
7+
# TODO(stuartmorgan): Remove this step once it's the default on stable.
8+
script: .ci/scripts/enable_swift_package_manager.sh
59
- name: create simulator
610
script: .ci/scripts/create_simulator.sh
711
infra_step: true # Note infra steps failing prevents "always" from running.
812
- name: download Dart and iOS deps
913
script: .ci/scripts/tool_runner.sh
10-
args: ["fetch-deps", "--ios", "--supporting-target-platforms-only"]
14+
args: ["fetch-deps", "--ios", "--supporting-target-platforms-only", "--swift-package-manager"]
1115
infra_step: true
1216
- name: build examples
1317
script: .ci/scripts/tool_runner.sh

.ci/targets/macos_build_all_packages.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,11 @@ tasks:
22
- name: prepare tool
33
script: .ci/scripts/prepare_tool.sh
44
infra_step: true # Note infra steps failing prevents "always" from running.
5-
- name: download Dart and macOS deps
6-
script: .ci/scripts/tool_runner.sh
7-
args: ["fetch-deps", "--macos", "--supporting-target-platforms-only"]
8-
infra_step: true
95
- name: create all_packages app
106
script: .ci/scripts/create_all_packages_app.sh
7+
# build-examples builds with Swift Package Manager, so run build-all without
8+
# it to test both modes in CI.
9+
args: ["--no-swift-package-manager"]
1110
infra_step: true # Note infra steps failing prevents "always" from running.
1211
- name: build all_packages for macOS debug
1312
script: .ci/scripts/build_all_packages_app.sh

.ci/targets/macos_platform_tests.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,13 @@ tasks:
22
- name: prepare tool
33
script: .ci/scripts/prepare_tool.sh
44
infra_step: true # Note infra steps failing prevents "always" from running.
5+
- name: enable Swift Package Manager
6+
# For consistency between stable and master channels, enable SwiftPM.
7+
# TODO(stuartmorgan): Remove this step once it's the default on stable.
8+
script: .ci/scripts/enable_swift_package_manager.sh
59
- name: download Dart and macOS deps
610
script: .ci/scripts/tool_runner.sh
7-
args: ["fetch-deps", "--macos", "--supporting-target-platforms-only"]
11+
args: ["fetch-deps", "--macos", "--supporting-target-platforms-only", "--swift-package-manager"]
812
infra_step: true
913
- name: build examples
1014
script: .ci/scripts/tool_runner.sh

packages/animations/example/ios/Flutter/AppFrameworkInfo.plist

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,5 @@
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
2222
<string>1.0</string>
23-
<key>MinimumOSVersion</key>
24-
<string>12.0</string>
2523
</dict>
2624
</plist>

packages/animations/example/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@
135135
97C146E61CF9000F007C117D /* Project object */ = {
136136
isa = PBXProject;
137137
attributes = {
138-
LastUpgradeCheck = 1430;
138+
LastUpgradeCheck = 1510;
139139
ORGANIZATIONNAME = "The Flutter Authors";
140140
TargetAttributes = {
141141
97C146ED1CF9000F007C117D = {
@@ -283,7 +283,7 @@
283283
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
284284
GCC_WARN_UNUSED_FUNCTION = YES;
285285
GCC_WARN_UNUSED_VARIABLE = YES;
286-
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
286+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
287287
MTL_ENABLE_DEBUG_INFO = NO;
288288
SDKROOT = iphoneos;
289289
SUPPORTED_PLATFORMS = iphoneos;
@@ -366,7 +366,7 @@
366366
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
367367
GCC_WARN_UNUSED_FUNCTION = YES;
368368
GCC_WARN_UNUSED_VARIABLE = YES;
369-
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
369+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
370370
MTL_ENABLE_DEBUG_INFO = YES;
371371
ONLY_ACTIVE_ARCH = YES;
372372
SDKROOT = iphoneos;
@@ -415,7 +415,7 @@
415415
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
416416
GCC_WARN_UNUSED_FUNCTION = YES;
417417
GCC_WARN_UNUSED_VARIABLE = YES;
418-
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
418+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
419419
MTL_ENABLE_DEBUG_INFO = NO;
420420
SDKROOT = iphoneos;
421421
SUPPORTED_PLATFORMS = iphoneos;

0 commit comments

Comments
 (0)