Skip to content

Commit 78c0607

Browse files
author
kongdywang
committed
update to 12.8.0
(cherry picked from commit 9f749312decce0baed7c6c3d66ff2ced1b8a460a)
1 parent 56641ff commit 78c0607

File tree

10 files changed

+27
-10
lines changed

10 files changed

+27
-10
lines changed

Flutter/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11

2+
#### Version: 12.8.0 2025.09.19
3+
4+
##### Features:
5+
6+
- set Android TXLiteAVSDK to 12.8.0.19279
7+
- set iOS TXLiteAVSDK to 12.8.19666
8+
- Fix known issue
9+
10+
211
#### Version: 12.7.4 2025.09.09
312

413
##### Features:

Flutter/CI/buildVersionOnMac.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildLog() {
55
}
66

77
inputVersion=$1
8-
export VERSION_NAME="12.7.4"
8+
export VERSION_NAME="12.8.0"
99
if [ -n "$inputVersion" ]; then
1010
VERSION_NAME=$inputVersion
1111
fi

Flutter/android/config.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ rootProject.ext {
44
supportSdkVersion = "26.0.1"
55
minSdkVersion = 19
66
targetSdkVersion = 28
7-
playerVersion = "12.7.4"
7+
playerVersion = "12.8.0"
88
compat = "androidx.appcompat:appcompat:1.6.1"
99

1010
/**
@@ -14,5 +14,5 @@ rootProject.ext {
1414
Professional SDK: liteavSdk="com.tencent.liteav:LiteAVSDK_Professional:latest.release"
1515
If you want to specify the SDK version(eg 11.7.0.13946), use: liteavSdk="com.tencent.liteav:LiteAVSDK_Player:11.7.0.13946"
1616
*/
17-
liteavSdk="com.tencent.liteav:LiteAVSDK_Player:12.7.0.19083"
17+
liteavSdk="com.tencent.liteav:LiteAVSDK_Player:12.8.0.19279"
1818
}

Flutter/android/src/main/java/com/tencent/vod/flutter/ui/FlutterPipImplActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ public void run() {
457457
moveCurActToFront();
458458
sendPipEvent(codeEvent, data);
459459
}
460-
}, 300);
460+
}, 500);
461461
} else {
462462
destroyPipAct();
463463
sendPipEvent(codeEvent, data);

Flutter/ios/super_player.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
Pod::Spec.new do |s|
66
s.name = 'super_player'
7-
s.version = '12.7.4'
7+
s.version = '12.8.0'
88
s.summary = 'The super_player Flutter plugin is one of the sub-product SDKs of the audio/video terminal SDK (Tencent Cloud Video on Demand).'
99
s.description = <<-DESC
1010
player plugin.
@@ -26,7 +26,7 @@ player plugin.
2626
# Player_Premium SDK: s.dependency 'TXLiteAVSDK_Player_Premium'
2727
# Professional SDK: s.dependency 'TXLiteAVSDK_Professional'
2828
# If you want to specify the SDK version(eg 11.6.15041), use: s.dependency 'TXLiteAVSDK_Player','11.6.15041'
29-
s.dependency 'TXLiteAVSDK_Player','12.7.19324'
29+
s.dependency 'TXLiteAVSDK_Player','12.8.19666'
3030
# s.dependency 'FTXPiPKit'
3131
s.vendored_frameworks = [
3232
'localdep/FTXPiPKit.xcframework'

Flutter/lib/Core/common/common_config.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
part of SuperPlayer;
33

44
abstract class FPlayerPckInfo {
5-
static const String PLAYER_VERSION = "12.7.4";
5+
static const String PLAYER_VERSION = "12.8.0";
66
}

Flutter/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: super_player
22
description: The super_player Flutter plugin is one of the sub-product SDKs of the audio/video terminal SDK (Tencent Cloud Video on Demand).
3-
version: 12.7.4
3+
version: 12.8.0
44
homepage: https://github.com/LiteAVSDK/Player_Flutter
55

66
environment:

FlutterWidget/superplayer_widget/lib/common/player_constants.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ part of demo_super_player_lib;
33

44
class PlayerConstants {
55
static const PKG_NAME = "superplayer_widget";
6-
static const String PLAYER_WIDGET_VERSION = "12.7.4";
6+
static const String PLAYER_WIDGET_VERSION = "12.8.0";
77
}

FlutterWidget/superplayer_widget/lib/ui/superplayer_widget.dart

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,10 @@ class SuperPlayerViewState extends State<SuperPlayerView> with WidgetsBindingObs
295295
await _playController.setPlayerView(-1);
296296
await connectPlayerView();
297297
});
298+
} else {
299+
Future.delayed(Duration(milliseconds: 300), () async {
300+
_playController._vodPlayerController.reDraw();
301+
});
298302
}
299303
}, () async {
300304
_playController._updatePlayerUIStatus(SuperPlayerUIStatus.WINDOW_MODE);
@@ -311,6 +315,10 @@ class SuperPlayerViewState extends State<SuperPlayerView> with WidgetsBindingObs
311315
await _playController.setPlayerView(-1);
312316
await connectPlayerView();
313317
});
318+
} else {
319+
Future.delayed(Duration(milliseconds: 300), () async {
320+
_playController._vodPlayerController.reDraw();
321+
});
314322
}
315323
});
316324
WidgetsBinding.instance.removeObserver(this);

FlutterWidget/superplayer_widget/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: superplayer_widget
22
description: superplayer,base on vodplayer
3-
version: 12.7.4
3+
version: 12.8.0
44

55
environment:
66
sdk: '>=2.17.0 <4.0.0'

0 commit comments

Comments
 (0)