Skip to content

Commit cf7d93f

Browse files
authored
fix(connectivity_plus)!: Bump min iOS to 12 to support XCode 15 (#2169)
1 parent d219331 commit cf7d93f

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
<key>CFBundleVersion</key>
2222
<string>1.0</string>
2323
<key>MinimumOSVersion</key>
24-
<string>11.0</string>
24+
<string>12.0</string>
2525
</dict>
2626
</plist>

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,6 @@
105105
CC3B43C8CED1D022483DD294 /* Pods-RunnerTests.release.xcconfig */,
106106
AA3CF93A0B4C03146682AA3A /* Pods-RunnerTests.profile.xcconfig */,
107107
);
108-
name = Pods;
109108
path = Pods;
110109
sourceTree = "<group>";
111110
};
@@ -470,6 +469,7 @@
470469
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
471470
ENABLE_BITCODE = NO;
472471
INFOPLIST_FILE = Runner/Info.plist;
472+
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
473473
LD_RUNPATH_SEARCH_PATHS = (
474474
"$(inherited)",
475475
"@executable_path/Frameworks",
@@ -648,6 +648,7 @@
648648
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
649649
ENABLE_BITCODE = NO;
650650
INFOPLIST_FILE = Runner/Info.plist;
651+
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
651652
LD_RUNPATH_SEARCH_PATHS = (
652653
"$(inherited)",
653654
"@executable_path/Frameworks",
@@ -670,6 +671,7 @@
670671
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
671672
ENABLE_BITCODE = NO;
672673
INFOPLIST_FILE = Runner/Info.plist;
674+
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
673675
LD_RUNPATH_SEARCH_PATHS = (
674676
"$(inherited)",
675677
"@executable_path/Frameworks",

packages/connectivity_plus/connectivity_plus/ios/connectivity_plus.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Downloaded by pub (not CocoaPods).
1818
s.public_header_files = 'Classes/**/*.h'
1919
s.dependency 'Flutter'
2020
s.dependency 'ReachabilitySwift'
21-
s.platform = :ios, '11.0'
21+
s.platform = :ios, '12.0'
2222
s.swift_version = '5.0'
2323
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
2424
end

0 commit comments

Comments
 (0)