提交 78c06073 authored 作者: kongdywang's avatar kongdywang

update to 12.8.0

(cherry picked from commit 9f749312decce0baed7c6c3d66ff2ced1b8a460a)
上级 56641ff3
#### Version: 12.8.0 2025.09.19
##### Features:
- set Android TXLiteAVSDK to 12.8.0.19279
- set iOS TXLiteAVSDK to 12.8.19666
- Fix known issue
#### Version: 12.7.4 2025.09.09 #### Version: 12.7.4 2025.09.09
##### Features: ##### Features:
......
...@@ -5,7 +5,7 @@ buildLog() { ...@@ -5,7 +5,7 @@ buildLog() {
} }
inputVersion=$1 inputVersion=$1
export VERSION_NAME="12.7.4" export VERSION_NAME="12.8.0"
if [ -n "$inputVersion" ]; then if [ -n "$inputVersion" ]; then
VERSION_NAME=$inputVersion VERSION_NAME=$inputVersion
fi fi
......
...@@ -4,7 +4,7 @@ rootProject.ext { ...@@ -4,7 +4,7 @@ rootProject.ext {
supportSdkVersion = "26.0.1" supportSdkVersion = "26.0.1"
minSdkVersion = 19 minSdkVersion = 19
targetSdkVersion = 28 targetSdkVersion = 28
playerVersion = "12.7.4" playerVersion = "12.8.0"
compat = "androidx.appcompat:appcompat:1.6.1" compat = "androidx.appcompat:appcompat:1.6.1"
/** /**
...@@ -14,5 +14,5 @@ rootProject.ext { ...@@ -14,5 +14,5 @@ rootProject.ext {
Professional SDK: liteavSdk="com.tencent.liteav:LiteAVSDK_Professional:latest.release" Professional SDK: liteavSdk="com.tencent.liteav:LiteAVSDK_Professional:latest.release"
If you want to specify the SDK version(eg 11.7.0.13946), use: liteavSdk="com.tencent.liteav:LiteAVSDK_Player:11.7.0.13946" If you want to specify the SDK version(eg 11.7.0.13946), use: liteavSdk="com.tencent.liteav:LiteAVSDK_Player:11.7.0.13946"
*/ */
liteavSdk="com.tencent.liteav:LiteAVSDK_Player:12.7.0.19083" liteavSdk="com.tencent.liteav:LiteAVSDK_Player:12.8.0.19279"
} }
\ No newline at end of file
...@@ -457,7 +457,7 @@ public class FlutterPipImplActivity extends Activity implements ITXVodPlayListen ...@@ -457,7 +457,7 @@ public class FlutterPipImplActivity extends Activity implements ITXVodPlayListen
moveCurActToFront(); moveCurActToFront();
sendPipEvent(codeEvent, data); sendPipEvent(codeEvent, data);
} }
}, 300); }, 500);
} else { } else {
destroyPipAct(); destroyPipAct();
sendPipEvent(codeEvent, data); sendPipEvent(codeEvent, data);
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
# #
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = 'super_player' s.name = 'super_player'
s.version = '12.7.4' s.version = '12.8.0'
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).' 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).'
s.description = <<-DESC s.description = <<-DESC
player plugin. player plugin.
...@@ -26,7 +26,7 @@ player plugin. ...@@ -26,7 +26,7 @@ player plugin.
# Player_Premium SDK: s.dependency 'TXLiteAVSDK_Player_Premium' # Player_Premium SDK: s.dependency 'TXLiteAVSDK_Player_Premium'
# Professional SDK: s.dependency 'TXLiteAVSDK_Professional' # Professional SDK: s.dependency 'TXLiteAVSDK_Professional'
# If you want to specify the SDK version(eg 11.6.15041), use: s.dependency 'TXLiteAVSDK_Player','11.6.15041' # If you want to specify the SDK version(eg 11.6.15041), use: s.dependency 'TXLiteAVSDK_Player','11.6.15041'
s.dependency 'TXLiteAVSDK_Player','12.7.19324' s.dependency 'TXLiteAVSDK_Player','12.8.19666'
# s.dependency 'FTXPiPKit' # s.dependency 'FTXPiPKit'
s.vendored_frameworks = [ s.vendored_frameworks = [
'localdep/FTXPiPKit.xcframework' 'localdep/FTXPiPKit.xcframework'
......
...@@ -2,5 +2,5 @@ ...@@ -2,5 +2,5 @@
part of SuperPlayer; part of SuperPlayer;
abstract class FPlayerPckInfo { abstract class FPlayerPckInfo {
static const String PLAYER_VERSION = "12.7.4"; static const String PLAYER_VERSION = "12.8.0";
} }
\ No newline at end of file
name: super_player name: super_player
description: The super_player Flutter plugin is one of the sub-product SDKs of the audio/video terminal SDK (Tencent Cloud Video on Demand). description: The super_player Flutter plugin is one of the sub-product SDKs of the audio/video terminal SDK (Tencent Cloud Video on Demand).
version: 12.7.4 version: 12.8.0
homepage: https://github.com/LiteAVSDK/Player_Flutter homepage: https://github.com/LiteAVSDK/Player_Flutter
environment: environment:
......
...@@ -3,5 +3,5 @@ part of demo_super_player_lib; ...@@ -3,5 +3,5 @@ part of demo_super_player_lib;
class PlayerConstants { class PlayerConstants {
static const PKG_NAME = "superplayer_widget"; static const PKG_NAME = "superplayer_widget";
static const String PLAYER_WIDGET_VERSION = "12.7.4"; static const String PLAYER_WIDGET_VERSION = "12.8.0";
} }
...@@ -295,6 +295,10 @@ class SuperPlayerViewState extends State<SuperPlayerView> with WidgetsBindingObs ...@@ -295,6 +295,10 @@ class SuperPlayerViewState extends State<SuperPlayerView> with WidgetsBindingObs
await _playController.setPlayerView(-1); await _playController.setPlayerView(-1);
await connectPlayerView(); await connectPlayerView();
}); });
} else {
Future.delayed(Duration(milliseconds: 300), () async {
_playController._vodPlayerController.reDraw();
});
} }
}, () async { }, () async {
_playController._updatePlayerUIStatus(SuperPlayerUIStatus.WINDOW_MODE); _playController._updatePlayerUIStatus(SuperPlayerUIStatus.WINDOW_MODE);
...@@ -311,6 +315,10 @@ class SuperPlayerViewState extends State<SuperPlayerView> with WidgetsBindingObs ...@@ -311,6 +315,10 @@ class SuperPlayerViewState extends State<SuperPlayerView> with WidgetsBindingObs
await _playController.setPlayerView(-1); await _playController.setPlayerView(-1);
await connectPlayerView(); await connectPlayerView();
}); });
} else {
Future.delayed(Duration(milliseconds: 300), () async {
_playController._vodPlayerController.reDraw();
});
} }
}); });
WidgetsBinding.instance.removeObserver(this); WidgetsBinding.instance.removeObserver(this);
......
name: superplayer_widget name: superplayer_widget
description: superplayer,base on vodplayer description: superplayer,base on vodplayer
version: 12.7.4 version: 12.8.0
environment: environment:
sdk: '>=2.17.0 <4.0.0' sdk: '>=2.17.0 <4.0.0'
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论