Skip to content

Commit 0b331d6

Browse files
committed
M
1 parent bf84784 commit 0b331d6

File tree

4 files changed

+10
-0
lines changed

4 files changed

+10
-0
lines changed

.ci/targets/ios_build_all_packages.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ 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
59
- name: create all_packages app
610
script: .ci/scripts/create_all_packages_app.sh
711
infra_step: true # Note infra steps failing prevents "always" from running.

.ci/targets/macos_build_all_packages.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ 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
59
- name: create all_packages app
610
script: .ci/scripts/create_all_packages_app.sh
711
infra_step: true # Note infra steps failing prevents "always" from running.

packages/extension_google_sign_in_as_googleapis_auth/example/ios/Podfile

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ flutter_ios_podfile_setup
2929

3030
target 'Runner' do
3131
use_frameworks!
32+
use_modular_headers!
3233

3334
flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
3435
end

packages/google_sign_in/google_sign_in_ios/example/ios/Podfile

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ flutter_ios_podfile_setup
3333

3434
target 'Runner' do
3535
use_frameworks!
36+
use_modular_headers!
3637

3738
flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
3839
target 'RunnerTests' do

0 commit comments

Comments
 (0)