Skip to content

Commit b073e6e

Browse files
authored
[video_player] Bump minimum Flutter version and iOS deployment target (flutter#4360)
1 parent f9ec026 commit b073e6e

File tree

6 files changed

+13
-9
lines changed

6 files changed

+13
-9
lines changed

packages/video_player/video_player/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.2.4
2+
3+
* Update minimum Flutter SDK to 2.5 and iOS deployment target to 9.0.
4+
15
## 2.2.3
26

37
* Fixed empty caption text still showing the caption widget.

packages/video_player/video_player/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ First, add `video_player` as a [dependency in your pubspec.yaml file](https://fl
1212

1313
### iOS
1414

15-
Add the following entry to your _Info.plist_ file, located in `<project root>/ios/Runner/Info.plist`:
15+
This plugin requires iOS 9.0 or higher. Add the following entry to your _Info.plist_ file, located in `<project root>/ios/Runner/Info.plist`:
1616

1717
```xml
1818
<key>NSAppTransportSecurity</key>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@
2525
<string>arm64</string>
2626
</array>
2727
<key>MinimumOSVersion</key>
28-
<string>8.0</string>
28+
<string>9.0</string>
2929
</dict>
3030
</plist>

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,7 @@
516516
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
517517
GCC_WARN_UNUSED_FUNCTION = YES;
518518
GCC_WARN_UNUSED_VARIABLE = YES;
519-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
519+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
520520
MTL_ENABLE_DEBUG_INFO = YES;
521521
ONLY_ACTIVE_ARCH = YES;
522522
SDKROOT = iphoneos;
@@ -566,7 +566,7 @@
566566
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
567567
GCC_WARN_UNUSED_FUNCTION = YES;
568568
GCC_WARN_UNUSED_VARIABLE = YES;
569-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
569+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
570570
MTL_ENABLE_DEBUG_INFO = NO;
571571
SDKROOT = iphoneos;
572572
TARGETED_DEVICE_FAMILY = "1,2";

packages/video_player/video_player/ios/video_player.podspec

Lines changed: 2 additions & 2 deletions
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

21-
s.platform = :ios, '8.0'
22-
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'VALID_ARCHS[sdk=iphonesimulator*]' => 'x86_64' }
21+
s.platform = :ios, '9.0'
22+
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
2323
end
2424

packages/video_player/video_player/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ description: Flutter plugin for displaying inline video with other Flutter
33
widgets on Android, iOS, and web.
44
repository: https://github.com/flutter/plugins/tree/master/packages/video_player/video_player
55
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+video_player%22
6-
version: 2.2.3
6+
version: 2.2.4
77

88
environment:
9-
sdk: ">=2.12.0 <3.0.0"
10-
flutter: ">=2.0.0"
9+
sdk: ">=2.14.0 <3.0.0"
10+
flutter: ">=2.5.0"
1111

1212
flutter:
1313
plugin:

0 commit comments

Comments
 (0)