File tree 11 files changed +17
-22
lines changed
packages/google_maps_flutter/google_maps_flutter_ios 11 files changed +17
-22
lines changed Original file line number Diff line number Diff line change
1
+ ## 2.4.1
2
+
3
+ * Restores the workaround to exclude arm64 simulator builds, as it is still necessary for applications targeting iOS 12.
4
+
1
5
## 2.4.0
2
6
3
7
* Adds support for arm64 simulators.
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
- build_configuration . build_settings [ 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' ] = 'arm64 i386'
44
- end
45
42
end
46
43
end
Original file line number Diff line number Diff line change 282
282
97C146E61CF9000F007C117D /* Project object */ = {
283
283
isa = PBXProject;
284
284
attributes = {
285
- LastUpgradeCheck = 1430 ;
285
+ LastUpgradeCheck = 1510 ;
286
286
ORGANIZATIONNAME = "The Flutter Authors";
287
287
TargetAttributes = {
288
288
97C146ED1CF9000F007C117D = {
620
620
buildSettings = {
621
621
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
622
622
ENABLE_BITCODE = NO;
623
- "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "i386 arm64";
624
623
FRAMEWORK_SEARCH_PATHS = (
625
624
"$(inherited)",
626
625
"$(PROJECT_DIR)/Flutter",
645
644
buildSettings = {
646
645
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
647
646
ENABLE_BITCODE = NO;
648
- "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "i386 arm64";
649
647
FRAMEWORK_SEARCH_PATHS = (
650
648
"$(inherited)",
651
649
"$(PROJECT_DIR)/Flutter",
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
- build_configuration . build_settings [ 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' ] = 'arm64 i386'
44
- end
45
42
end
46
43
end
Original file line number Diff line number Diff line change 232
232
97C146E61CF9000F007C117D /* Project object */ = {
233
233
isa = PBXProject;
234
234
attributes = {
235
- LastUpgradeCheck = 1430 ;
235
+ LastUpgradeCheck = 1510 ;
236
236
ORGANIZATIONNAME = "The Flutter Authors";
237
237
TargetAttributes = {
238
238
97C146ED1CF9000F007C117D = {
546
546
CLANG_ENABLE_MODULES = YES;
547
547
DEVELOPMENT_TEAM = "";
548
548
ENABLE_BITCODE = NO;
549
- "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "i386 arm64";
550
549
FRAMEWORK_SEARCH_PATHS = (
551
550
"$(inherited)",
552
551
"$(PROJECT_DIR)/Flutter",
573
572
CLANG_ENABLE_MODULES = YES;
574
573
DEVELOPMENT_TEAM = "";
575
574
ENABLE_BITCODE = NO;
576
- "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "i386 arm64";
577
575
FRAMEWORK_SEARCH_PATHS = (
578
576
"$(inherited)",
579
577
"$(PROJECT_DIR)/Flutter",
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<Scheme
3
- LastUpgradeVersion = " 1430 "
3
+ LastUpgradeVersion = " 1510 "
4
4
version = " 1.3" >
5
5
<BuildAction
6
6
parallelizeBuildables = " YES"
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
- build_configuration . build_settings [ 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' ] = 'arm64 i386'
44
- end
45
42
end
46
43
end
Original file line number Diff line number Diff line change 232
232
97C146E61CF9000F007C117D /* Project object */ = {
233
233
isa = PBXProject;
234
234
attributes = {
235
- LastUpgradeCheck = 1430 ;
235
+ LastUpgradeCheck = 1510 ;
236
236
ORGANIZATIONNAME = "The Flutter Authors";
237
237
TargetAttributes = {
238
238
97C146ED1CF9000F007C117D = {
545
545
CLANG_ENABLE_MODULES = YES;
546
546
DEVELOPMENT_TEAM = "";
547
547
ENABLE_BITCODE = NO;
548
- "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "i386 arm64";
549
548
FRAMEWORK_SEARCH_PATHS = (
550
549
"$(inherited)",
551
550
"$(PROJECT_DIR)/Flutter",
572
571
CLANG_ENABLE_MODULES = YES;
573
572
DEVELOPMENT_TEAM = "";
574
573
ENABLE_BITCODE = NO;
575
- "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "i386 arm64";
576
574
FRAMEWORK_SEARCH_PATHS = (
577
575
"$(inherited)",
578
576
"$(PROJECT_DIR)/Flutter",
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<Scheme
3
- LastUpgradeVersion = " 1430 "
3
+ LastUpgradeVersion = " 1510 "
4
4
version = " 1.3" >
5
5
<BuildAction
6
6
parallelizeBuildables = " YES"
Original file line number Diff line number Diff line change @@ -24,6 +24,12 @@ Downloaded by pub (not CocoaPods).
24
24
s . dependency 'GoogleMaps' , '< 9.0'
25
25
s . static_framework = true
26
26
s . platform = :ios , '12.0'
27
- s . pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
27
+ # GoogleMaps 6.x does not support arm64 simulators, but also doesn't declare
28
+ # explicitly that it doesn't, so mark that here so that the Flutter tool knows
29
+ # to build the Runner for x86_64 instead. See https://github.com/flutter/flutter/issues/94491
30
+ # TODO(stuartmorgan): Remove EXCLUDED_ARCHS once this plugin requires iOS 13+,
31
+ # at which point Cocoapods will resolve to a version of GoogleMaps that has
32
+ # arm64 support.
33
+ s . pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' , 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
28
34
s . resource_bundles = { 'google_maps_flutter_ios_privacy' => [ 'Resources/PrivacyInfo.xcprivacy' ] }
29
35
end
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: google_maps_flutter_ios
2
2
description : iOS implementation of the google_maps_flutter plugin.
3
3
repository : https://github.com/flutter/packages/tree/main/packages/google_maps_flutter/google_maps_flutter_ios
4
4
issue_tracker : https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+maps%22
5
- version : 2.4.0
5
+ version : 2.4.1
6
6
7
7
environment :
8
8
sdk : ^3.2.3
You can’t perform that action at this time.
0 commit comments