Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Remove print statement, bump version
  • Loading branch information
camsim99 committed Oct 16, 2024
commit 1ba7efc85dc6957d411c2e768d61262d4af6cd8d
6 changes: 6 additions & 0 deletions packages/video_player/video_player_android/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 2.7.14

* Changes the rotation correction calculation for Android API 21+ to use
that which is reported by the video's format instead of the unapplied
rotation degrees that Exoplayer does not report on Android API 21+.

## 2.7.13

* When `AndroidVideoPlayer` attempts to operate on a `textureId` that is not
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ private void setBuffering(boolean buffering) {

@SuppressWarnings("SuspiciousNameCombination")
private void sendInitialized() {
System.out.println("Hello???");
if (isInitialized) {
return;
}
Expand Down Expand Up @@ -76,7 +75,6 @@ private void sendInitialized() {
height = videoSize.width;
}
}

events.onInitialized(width, height, exoPlayer.getDuration(), rotationCorrection);
}

Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion packages/video_player/video_player_android/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: video_player_android
description: Android implementation of the video_player plugin.
repository: https://github.com/flutter/packages/tree/main/packages/video_player/video_player_android
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+video_player%22
version: 2.7.13
version: 2.7.14

environment:
sdk: ^3.5.0
Expand Down