This repository was archived by the owner on Feb 22, 2023. It is now read-only.
File tree 3 files changed +9
-0
lines changed
packages/google_sign_in/google_sign_in
3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 1
1
## NEXT
2
2
3
3
* Add iOS unit and UI integration test targets.
4
+ * Exclude arm64 simulators in example app.
4
5
5
6
## 5.0.4
6
7
Original file line number Diff line number Diff line change 39
39
post_install do |installer |
40
40
installer . pods_project . targets . each do |target |
41
41
flutter_additional_ios_build_settings ( target )
42
+ target . build_configurations . each do |build_configuration |
43
+ # GoogleSignIn does not support arm64 simulators.
44
+ build_configuration . build_settings [ 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' ] = 'arm64 i386'
45
+ end
42
46
end
43
47
end
Original file line number Diff line number Diff line change 603
603
buildSettings = {
604
604
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
605
605
ENABLE_BITCODE = NO;
606
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "i386 arm64";
606
607
FRAMEWORK_SEARCH_PATHS = (
607
608
"$(inherited)",
608
609
"$(PROJECT_DIR)/Flutter",
624
625
buildSettings = {
625
626
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
626
627
ENABLE_BITCODE = NO;
628
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "i386 arm64";
627
629
FRAMEWORK_SEARCH_PATHS = (
628
630
"$(inherited)",
629
631
"$(PROJECT_DIR)/Flutter",
645
647
buildSettings = {
646
648
BUNDLE_LOADER = "$(TEST_HOST)";
647
649
CODE_SIGN_STYLE = Automatic;
650
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "i386 arm64";
648
651
INFOPLIST_FILE = RunnerTests/Info.plist;
649
652
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
650
653
PRODUCT_BUNDLE_IDENTIFIER = dev.flutter.plugins.RunnerTests;
659
662
buildSettings = {
660
663
BUNDLE_LOADER = "$(TEST_HOST)";
661
664
CODE_SIGN_STYLE = Automatic;
665
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "i386 arm64";
662
666
INFOPLIST_FILE = RunnerTests/Info.plist;
663
667
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
664
668
PRODUCT_BUNDLE_IDENTIFIER = dev.flutter.plugins.RunnerTests;
You can’t perform that action at this time.
0 commit comments