package upgrade + test fix
This commit is contained in:
parent
87b007c60f
commit
507270bdd8
3 changed files with 14 additions and 6 deletions
Binary file not shown.
12
pubspec.lock
12
pubspec.lock
|
@ -288,7 +288,7 @@ packages:
|
||||||
description:
|
description:
|
||||||
path: "."
|
path: "."
|
||||||
ref: aves
|
ref: aves
|
||||||
resolved-ref: "1d10ebbdcd71a2d9970dd6cd1f3cf6315bb686e6"
|
resolved-ref: "44569361c251cc4ced0ff845b02c64ceeaebb957"
|
||||||
url: "git://github.com/deckerst/fijkplayer.git"
|
url: "git://github.com/deckerst/fijkplayer.git"
|
||||||
source: git
|
source: git
|
||||||
version: "0.10.0"
|
version: "0.10.0"
|
||||||
|
@ -305,35 +305,35 @@ packages:
|
||||||
name: firebase_core
|
name: firebase_core
|
||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.9.0"
|
version: "1.10.0"
|
||||||
firebase_core_platform_interface:
|
firebase_core_platform_interface:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: firebase_core_platform_interface
|
name: firebase_core_platform_interface
|
||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "4.0.1"
|
version: "4.1.0"
|
||||||
firebase_core_web:
|
firebase_core_web:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: firebase_core_web
|
name: firebase_core_web
|
||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.1.0"
|
version: "1.2.0"
|
||||||
firebase_crashlytics:
|
firebase_crashlytics:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: firebase_crashlytics
|
name: firebase_crashlytics
|
||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.2.5"
|
version: "2.3.0"
|
||||||
firebase_crashlytics_platform_interface:
|
firebase_crashlytics_platform_interface:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: firebase_crashlytics_platform_interface
|
name: firebase_crashlytics_platform_interface
|
||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "3.1.5"
|
version: "3.1.6"
|
||||||
flex_color_picker:
|
flex_color_picker:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
|
|
|
@ -80,4 +80,12 @@ class FakeMetadataDb extends Fake implements MetadataDb {
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Future<void> removeCovers(Set<CollectionFilter> filters) => SynchronousFuture(null);
|
Future<void> removeCovers(Set<CollectionFilter> filters) => SynchronousFuture(null);
|
||||||
|
|
||||||
|
// video playback
|
||||||
|
|
||||||
|
@override
|
||||||
|
Future<void> updateVideoPlaybackId(int oldId, int? newId) => SynchronousFuture(null);
|
||||||
|
|
||||||
|
@override
|
||||||
|
Future<void> removeVideoPlayback(Set<int> contentIds) => SynchronousFuture(null);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue