Skip to content

Commit

Permalink
Fix the issue where Android crashes when restoring from PIP
Browse files Browse the repository at this point in the history
(cherry picked from commit 6284172)
  • Loading branch information
kongdywang committed Dec 30, 2024
1 parent d6ee3d6 commit 511a0fb
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
8 changes: 7 additions & 1 deletion Flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,4 +99,10 @@ Player_Premium 分支:Android & iOS 端集成TXLiteAVSDK_Player_Premium lastes
- Fix the issue that there is no subtitle callback without setting config on iOS.
- Fix the issue that there is no callback in some cases of downloading and pre-downloading.
- Add DRM playback API.
- Fix other known issues.
- Fix other known issues.

#### Version: 12.2.2 2024.12.30

##### Features:

- Fix the issue where Android crashes when restoring from PIP.
2 changes: 1 addition & 1 deletion Flutter/CI/buildVersionOnMac.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildLog() {
}

inputVersion=$1
export VERSION_NAME="12.2.1"
export VERSION_NAME="12.2.2"
if [ -n "$inputVersion" ]; then
VERSION_NAME=$inputVersion
fi
Expand Down
2 changes: 1 addition & 1 deletion Flutter/android/config.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ rootProject.ext {
supportSdkVersion = "26.0.1"
minSdkVersion = 19
targetSdkVersion = 28
playerVersion = '12.2.1'
playerVersion = '12.2.2'
compat = "androidx.appcompat:appcompat:1.6.1"

/**
Expand Down
2 changes: 1 addition & 1 deletion Flutter/ios/super_player.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
Pod::Spec.new do |s|
s.name = 'super_player'
s.version = '12.2.1'
s.version = '12.2.2'
s.summary = 'player plugin.'
s.description = <<-DESC
player plugin.
Expand Down
2 changes: 1 addition & 1 deletion Flutter/lib/Core/common/common_config.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
part of SuperPlayer;

abstract class FPlayerPckInfo {
static const String PLAYER_VERSION = "12.2.1";
static const String PLAYER_VERSION = "12.2.2";
}
2 changes: 1 addition & 1 deletion Flutter/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: super_player
description: player plugin.
version: 12.2.1
version: 12.2.2
author:
homepage:

Expand Down

0 comments on commit 511a0fb

Please sign in to comment.