You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixesflutter/flutter#166097
*List which issues are fixed by this PR. You must list at least one issue.*
## Manual Testing Overview
| API | Device | Video requires rotation | Works w/o fix| Works w/ fix | Ref |
|---|---|---|---|---|---|
| 35 | Emulator | yes | no | yes | #9199 (comment) by @marvin-kolja |
| 34 | Pixel Tablet | no | no | yes | #9199 (comment) by @camsim99 |
| 34 | Pixel Tablet | yes | no | yes | @camsim99 |
| 33 | Samsung A71 | ? | ? | yes | #9199 (comment) by @PaulineMoovency |
| 32 | Pixel 3A | yes | no | yes | @camsim99 |
| 27 | Samsung Galaxy J7 | yes | yes | yes | @camsim99 |
## Pre-Review Checklist
[^1]: Regular contributors who have demonstrated familiarity with the repository guidelines only need to comment if the PR is not auto-exempted by repo tooling.
Copy file name to clipboardExpand all lines: packages/video_player/video_player_android/CHANGELOG.md
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,8 @@
1
+
## 2.8.4
2
+
3
+
* Fixes incorrect width/height swap ([bug](https://github.com/flutter/flutter/issues/166097)). The swap was originally required for the uncorrected width/height of `Format` but was mistakenly retained after [switching to `VideoSize`](https://github.com/flutter/packages/pull/6535), which already accounts for rotation.
4
+
* Fixes example app layout issue caused by `Transform.rotate` not affecting space calculation (following [#8685](https://github.com/flutter/packages/pull/8685)).
5
+
1
6
## 2.8.3
2
7
3
8
* Changes plugin to use `TextureRegistry.SurfaceProducer.handlesCropAndRotation` to detect
Copy file name to clipboardExpand all lines: packages/video_player/video_player_android/android/src/main/java/io/flutter/plugins/videoplayer/texture/TextureExoPlayerEventListener.java
+13-25Lines changed: 13 additions & 25 deletions
Original file line number
Diff line number
Diff line change
@@ -38,67 +38,55 @@ public TextureExoPlayerEventListener(
Copy file name to clipboardExpand all lines: packages/video_player/video_player_android/android/src/test/java/io/flutter/plugins/videoplayer/TextureExoPlayerEventListenerTest.java
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -77,7 +77,7 @@ public void onPlaybackStateChangedReadySendInitialized_belowAndroid21() {
0 commit comments