Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.

Commit 3d32b36

Browse files
authored
[ios_platform_images] Bump minimum Flutter version and iOS deployment target (#4353)
1 parent b8daefb commit 3d32b36

File tree

6 files changed

+15
-10
lines changed

6 files changed

+15
-10
lines changed

packages/ios_platform_images/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.2.0+2
2+
3+
* Update minimum Flutter SDK to 2.5 and iOS deployment target to 9.0.
4+
15
## 0.2.0+1
26

37
* Add iOS unit test target.

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

+1-1
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>8.0</string>
24+
<string>9.0</string>
2525
</dict>
2626
</plist>

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@
457457
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
458458
GCC_WARN_UNUSED_FUNCTION = YES;
459459
GCC_WARN_UNUSED_VARIABLE = YES;
460-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
460+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
461461
MTL_ENABLE_DEBUG_INFO = NO;
462462
SDKROOT = iphoneos;
463463
SUPPORTED_PLATFORMS = iphoneos;
@@ -539,7 +539,7 @@
539539
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
540540
GCC_WARN_UNUSED_FUNCTION = YES;
541541
GCC_WARN_UNUSED_VARIABLE = YES;
542-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
542+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
543543
MTL_ENABLE_DEBUG_INFO = YES;
544544
ONLY_ACTIVE_ARCH = YES;
545545
SDKROOT = iphoneos;
@@ -588,7 +588,7 @@
588588
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
589589
GCC_WARN_UNUSED_FUNCTION = YES;
590590
GCC_WARN_UNUSED_VARIABLE = YES;
591-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
591+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
592592
MTL_ENABLE_DEBUG_INFO = NO;
593593
SDKROOT = iphoneos;
594594
SUPPORTED_PLATFORMS = iphoneos;

packages/ios_platform_images/example/pubspec.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ description: Demonstrates how to use the ios_platform_images plugin.
33
publish_to: none
44

55
environment:
6-
sdk: ">=2.12.0 <3.0.0"
6+
sdk: ">=2.14.0 <3.0.0"
7+
flutter: ">=2.5.0"
78

89
dependencies:
910
flutter:

packages/ios_platform_images/ios/ios_platform_images.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ Downloaded by pub (not CocoaPods).
1717
s.documentation_url = 'https://pub.dev/packages/ios_platform_images'
1818
s.source_files = 'Classes/**/*'
1919
s.dependency 'Flutter'
20-
s.platform = :ios, '8.0'
20+
s.platform = :ios, '9.0'
2121

2222
# Flutter.framework does not contain a i386 slice. Only x86_64 simulators are supported.
23-
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'VALID_ARCHS[sdk=iphonesimulator*]' => 'x86_64' }
23+
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
2424
s.swift_version = '5.0'
2525
end

packages/ios_platform_images/pubspec.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ name: ios_platform_images
22
description: A plugin to share images between Flutter and iOS in add-to-app setups.
33
repository: https://github.com/flutter/plugins/tree/master/packages/ios_platform_images
44
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+ios_platform_images%22
5-
version: 0.2.0+1
5+
version: 0.2.0+2
66

77
environment:
8-
sdk: ">=2.12.0 <3.0.0"
9-
flutter: ">=2.0.0"
8+
sdk: ">=2.14.0 <3.0.0"
9+
flutter: ">=2.5.0"
1010

1111
flutter:
1212
plugin:

0 commit comments

Comments
 (0)