-
Notifications
You must be signed in to change notification settings - Fork 161
/
pubspec.yaml
42 lines (35 loc) · 1.2 KB
/
pubspec.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: cached_video_player
description: A new flutter plugin that is virtually a clone of official video_player plugin except that it supports caching( Android and iOS)
version: 2.0.4
homepage: https://github.com/vikram25897/flutter_cached_video_player
flutter:
plugin:
platforms:
android:
package: com.lazyarts.vikram.cached_video_player
pluginClass: CachedVideoPlayerPlugin
ios:
pluginClass: CachedVideoPlayerPlugin
web:
default_package: video_player_web
dependencies:
meta: ^1.7.0
video_player_platform_interface: ^6.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. The exact value doesn't matter since
# the constraints on the interface pins it.
# 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: ^2.0.10
flutter:
sdk: flutter
flutter_test:
sdk: flutter
dev_dependencies:
lints: ^1.0.1
pedantic: ^1.11.1
pigeon: ^3.1.0
environment:
sdk: ">=2.14.0 <3.0.0"
flutter: ">=2.10.0"