Skip to content

Commit f28cf2e

Browse files
authored
[video_player_android] update pigeon to 26.1.5 (flutter#10644)
fixes flutter/flutter#178908 ``` dart run script/tool/bin/flutter_plugin_tools.dart update-dependency --pub-package pigeon --packages=video_player_android bck-i-search: tool_ dart run script/tool/bin/flutter_plugin_tools.dart format --packages=video_player_android ``` ## Pre-Review Checklist
1 parent 6f392aa commit f28cf2e

4 files changed

Lines changed: 128 additions & 152 deletions

File tree

packages/video_player/video_player_android/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.9.1
2+
3+
* Updates to Pigeon 26.1.5.
4+
15
## 2.9.0
26

37
* Implements `getAudioTracks()` and `selectAudioTrack()` methods for Android using ExoPlayer.

packages/video_player/video_player_android/android/src/main/kotlin/io/flutter/plugins/videoplayer/Messages.kt

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright 2013 The Flutter Authors
22
// Use of this source code is governed by a BSD-style license that can be
33
// found in the LICENSE file.
4-
// Autogenerated from Pigeon (v26.1.0), do not edit directly.
4+
// Autogenerated from Pigeon (v26.1.5), do not edit directly.
55
// See also: https://pub.dev/packages/pigeon
66
@file:Suppress("UNCHECKED_CAST", "ArrayInDataClass")
77

@@ -55,7 +55,7 @@ private object MessagesPigeonUtils {
5555
}
5656
if (a is Map<*, *> && b is Map<*, *>) {
5757
return a.size == b.size &&
58-
a.all { (b as Map<Any?, Any?>).containsKey(it.key) && deepEquals(it.value, b[it.key]) }
58+
a.all { (b as Map<Any?, Any?>).contains(it.key) && deepEquals(it.value, b[it.key]) }
5959
}
6060
return a == b
6161
}
@@ -1144,4 +1144,8 @@ abstract class VideoEventsStreamHandler : MessagesPigeonEventChannelWrapper<Plat
11441144
.setStreamHandler(internalStreamHandler)
11451145
}
11461146
}
1147+
// Implement methods from MessagesPigeonEventChannelWrapper
1148+
override fun onListen(p0: Any?, sink: PigeonEventSink<PlatformVideoEvent>) {}
1149+
1150+
override fun onCancel(p0: Any?) {}
11471151
}

0 commit comments

Comments
 (0)