Skip to content

Commit 6fda334

Browse files
committed
fix(core): Podspec deployment target (#2099)
Fixes an issue surfaced in Flutter 3.3.0 which configures XCode projects based off this value. Previously, if the value was <9, the logic would apply. Now if the value is <11, the logic applies. We don't want this logic to apply. The previous value was incorrect anyway so it's a good change to make regardless.
1 parent 7c2525b commit 6fda334

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/amplify_core/ios/amplify_core.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ A base package shared across Amplify Flutter library.
1919
s.dependency 'Flutter'
2020
s.dependency 'SwiftLint'
2121
s.dependency 'SwiftFormat/CLI'
22-
s.platform = :ios, '9.0'
22+
s.platform = :ios, '11.0'
2323

2424
# Flutter.framework does not contain a i386 slice.
2525
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }

0 commit comments

Comments
 (0)