Skip to content

Commit 517ca5a

Browse files
Merge pull request #388 from mitchross/upgrade-vlc-2023
Update VLC SDK's
2 parents 07532cb + cfe9c56 commit 517ca5a

File tree

9 files changed

+18
-13
lines changed

9 files changed

+18
-13
lines changed

flutter_vlc_player/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 7.2.0
2+
* Update to latest VLCKit sdks
3+
Credits to Mitch Ross (https://github.com/mitchross)
14
## 7.1.5
25
* Fix plugin destructor (https://github.com/solid-software/flutter_vlc_player/issues/237)
36

flutter_vlc_player/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ android {
3939

4040
dependencies {
4141
implementation fileTree(include: ['*.jar'], dir: 'libs')
42-
implementation 'org.videolan.android:libvlc-all:3.5.0-eap6'
42+
implementation 'org.videolan.android:libvlc-all:3.6.0-eap2'
4343
implementation 'androidx.appcompat:appcompat:1.2.0'
4444
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
4545
implementation 'androidx.annotation:annotation:1.2.0'

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

flutter_vlc_player/example/ios/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Uncomment this line to define a global platform for your project
2-
platform :ios, '9.0'
2+
platform :ios, '14.0'
33

44
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
55
ENV['COCOAPODS_DISABLE_STATS'] = 'true'

flutter_vlc_player/example/ios/Runner/Info.plist

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
33
<plist version="1.0">
44
<dict>
5+
<key>CADisableMinimumFrameDurationOnPhone</key>
6+
<true/>
57
<key>CFBundleDevelopmentRegion</key>
68
<string>$(DEVELOPMENT_LANGUAGE)</string>
79
<key>CFBundleExecutable</key>

flutter_vlc_player/example/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ environment:
88
dependencies:
99
flutter:
1010
sdk: flutter
11-
path_provider: ^2.0.9
11+
path_provider: ^2.0.11
1212

1313

1414
# The following adds the Cupertino Icons font to your application.
1515
# Use with the CupertinoIcons class for iOS style icons.
16-
cupertino_icons: ^1.0.4
16+
cupertino_icons: ^1.0.5
1717

1818
dev_dependencies:
1919
flutter_test:

flutter_vlc_player/ios/flutter_vlc_player.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ Pod::Spec.new do |s|
1515
s.source = { :path => '.' }
1616
s.source_files = 'Classes/**/*'
1717
s.dependency 'Flutter'
18-
s.platform = :ios, '9.0'
19-
s.dependency 'MobileVLCKit', '~> 3.4'
18+
s.platform = :ios, '11.0'
19+
s.dependency 'MobileVLCKit', '~> 3.5.1'
2020
s.static_framework = true
2121

2222
# Flutter.framework does not contain a i386 slice.

flutter_vlc_player/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_vlc_player
22
description: A VLC-powered alternative to Flutter's video_player. Supports multiple players on one screen.
3-
version: 7.1.5
3+
version: 7.2.0
44
homepage: https://github.com/solid-software/flutter_vlc_player/
55

66
environment:
@@ -20,7 +20,7 @@ dependencies:
2020
flutter:
2121
sdk: flutter
2222

23-
meta: ^1.7.0
23+
meta: ^1.8.0
2424
flutter_vlc_player_platform_interface: ^2.0.1
2525

2626
dev_dependencies:
@@ -29,4 +29,4 @@ dev_dependencies:
2929

3030
flutter_lints: ^1.0.4
3131
pigeon: ^0.2.4
32-
plugin_platform_interface: ^2.0.1
32+
plugin_platform_interface: ^2.1.3

flutter_vlc_player_platform_interface/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ environment:
1010
dependencies:
1111
flutter:
1212
sdk: flutter
13-
meta: ^1.7.0
14-
plugin_platform_interface: ^2.1.2
13+
meta: ^1.8.0
14+
plugin_platform_interface: ^2.1.3
1515

1616
dev_dependencies:
1717
flutter_test:
1818
sdk: flutter
1919

2020
flutter_lints: ^1.0.4
21-
mockito: ^5.1.0
21+
mockito: ^5.3.2

0 commit comments

Comments
 (0)