Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions packages/video_player/video_player/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.10.5

* Support web by default.
* Use the new plugins pubspec schema.

## 0.10.4+1

* Fix pedantic lints. This fixes some potential race conditions in cases where
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#import "VideoPlayerPlugin.h"
#import "FLTVideoPlayerPlugin.h"
#import <AVFoundation/AVFoundation.h>
#import <GLKit/GLKit.h>

Expand Down
21 changes: 16 additions & 5 deletions packages/video_player/video_player/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,29 @@ name: video_player
description: Flutter plugin for displaying inline video with other Flutter
widgets on Android and iOS.
author: Flutter Team <[email protected]>
version: 0.10.4+1
version: 0.10.5
homepage: https://github.com/flutter/plugins/tree/master/packages/video_player/video_player

flutter:
plugin:
androidPackage: io.flutter.plugins.videoplayer
iosPrefix: FLT
pluginClass: VideoPlayerPlugin
platforms:
android:
package: io.flutter.plugins.videoplayer
pluginClass: VideoPlayerPlugin
ios:
pluginClass: FLTVideoPlayerPlugin
web:
default_package: video_player_web

dependencies:
meta: "^1.0.5"
video_player_platform_interface: ^1.0.1
# The design on https://flutter.dev/go/federated-plugins was to leave
# this constraint as "any". We cannot do it right now as it fails pub publish
# validation, so we set a ^ constraint.
# TODO(amirh): Revisit this (either update this part in the design or the pub tool).
# https://github.com/flutter/flutter/issues/46264
video_player_web: ^0.1.0

flutter:
sdk: flutter
Expand All @@ -24,4 +35,4 @@ dev_dependencies:

environment:
sdk: ">=2.0.0-dev.28.0 <3.0.0"
flutter: ">=1.9.1+hotfix.5 <2.0.0"
flutter: ">=1.12.8 <2.0.0"