Skip to content

feat: adapt rte#2538

Closed
ZGaopeng wants to merge 36 commits intorelease/6.5from
dev/release/6.5-rte
Closed

feat: adapt rte#2538
ZGaopeng wants to merge 36 commits intorelease/6.5from
dev/release/6.5-rte

Conversation

@ZGaopeng
Copy link
Contributor

No description provided.

github-actions bot and others added 18 commits January 14, 2026 11:29
Update dependencies with the following content:

Iris SDK Build ResultBuild version:4.5.2.8-build.1Iris Unity
macOS:Artifactory:https://artifactory-api.bj2.agoralab.co/artifactory/CSDC_repo/EP/4.5/20260112/mac/iris_4.5.2.8-build.1_DCG_Mac_Video_Unity_20260112_0211_32834.zipCDN:https://download.agora.io/sdk/release/iris_4.5.2.8-build.1_DCG_Mac_Video_Unity_20260112_0211_32834.zipIris
macOS:Artifactory:https://artifactory-api.bj2.agoralab.co/artifactory/CSDC_repo/EP/4.5/20260112/mac/iris_4.5.2.8-build.1_DCG_Mac_Video_Standalone_20260112_0211_32834.ziphttps://artifactory-api.bj2.agoralab.co/artifactory/CSDC_repo/EP/4.5/20260112/mac/iris_4.5.2.8-build.1_DCG_Mac_Video_20260112_0211_32834.zipCDN:https://download.agora.io/sdk/release/iris_4.5.2.8-build.1_DCG_Mac_Video_Standalone_20260112_0211_32834.ziphttps://download.agora.io/sdk/release/iris_4.5.2.8-build.1_DCG_Mac_Video_20260112_0211_32834.zipCocoapods:pod
'AgoraIrisRTC_macOS', '4.5.2.8-build.1'Iris
iOS:Artifactory:https://artifactory-api.bj2.agoralab.co/artifactory/CSDC_repo/EP/4.5/20260112/ios/iris_4.5.2.8-build.1_DCG_iOS_Video_Standalone_20260112_0211_33868.ziphttps://artifactory-api.bj2.agoralab.co/artifactory/CSDC_repo/EP/4.5/20260112/ios/iris_4.5.2.8-build.1_DCG_iOS_Video_20260112_0211_33868.zipCDN:https://download.agora.io/sdk/release/iris_4.5.2.8-build.1_DCG_iOS_Video_Standalone_20260112_0211_33868.ziphttps://download.agora.io/sdk/release/iris_4.5.2.8-build.1_DCG_iOS_Video_20260112_0211_33868.zipCocoapods:pod
'AgoraIrisRTC_iOS', '4.5.2.8-build.1'Iris
Android:Artifactory:https://artifactory-api.bj2.agoralab.co/artifactory/CSDC_repo/EP/4.5/20260112/android/iris_4.5.2.8-build.1_DCG_Android_Video_16K_20260112_0211_341022.ziphttps://artifactory-api.bj2.agoralab.co/artifactory/CSDC_repo/EP/4.5/20260112/android/iris_4.5.2.8-build.1_DCG_Android_Video_Standalone_16K_20260112_0211_341022.zipCDN:https://download.agora.io/sdk/release/iris_4.5.2.8-build.1_DCG_Android_Video_16K_20260112_0211_341022.ziphttps://download.agora.io/sdk/release/iris_4.5.2.8-build.1_DCG_Android_Video_Standalone_16K_20260112_0211_341022.zipMaven:implementation
'io.agora.rtc:iris-rtc:4.5.2.8-build.1'Iris
Windows:Artifactory:https://artifactory-api.bj2.agoralab.co/artifactory/CSDC_repo/EP/4.5/20260112/windows/iris_4.5.2.8-build.1_DCG_Windows_Video_20260112_0211_31902.ziphttps://artifactory-api.bj2.agoralab.co/artifactory/CSDC_repo/EP/4.5/20260112/windows/iris_4.5.2.8-build.1_DCG_Windows_Video_Standalone_20260112_0211_31902.zipCDN:https://download.agora.io/sdk/release/iris_4.5.2.8-build.1_DCG_Windows_Video_20260112_0211_31902.ziphttps://download.agora.io/sdk/release/iris_4.5.2.8-build.1_DCG_Windows_Video_Standalone_20260112_0211_31902.zip
pod 'AgoraRtcEngine_Special_iOS', '4.5.2.8' implementation
'io.agora.rtc:agora-special-full:4.5.2.8' implementation
'io.agora.rtc:agora-special-voice:4.5.2.8' implementation
'io.agora.rtc:full-screen-sharing:4.5.2.8'
https://download.agora.io/sdk/release/Agora_Native_SDK_for_Mac_rel.v4.5.2.8_26587_FULL_20260103_2012_997114.zip
【COCOAPODS】 pod 'AgoraRtcEngine_Special_macOS', '4.5.2.8'
https://download.agora.io/sdk/release/Agora_Native_SDK_for_Windows_rel.v4.5.2.8_31216_FULL_20260103_2013_997115.zip

---
**Code Generation Status:** ✅ Success

> This pull request is trigger by bot, you can checkout this branch and
update it.

Co-authored-by: guoxianzhe <guoxianzhe@users.noreply.github.com>
- Add RTE config setters (appId, logFolder, logFileSize, areaCode, cloudProxy, jsonParameter)
- Implement Canvas config APIs (video render mode, mirror mode, crop area)
- Complete Player config APIs (audio tracks, subtitle tracks, audio params, ABR layers)
- Add RteConfig example
- Optimize header imports to use AgoraRteKit.h
Split monolithic RTE controller into separate modules (RTE, Config, Player, Canvas) for better maintainability
- Extract RTE core logic into AgoraRteCoreImpl class
- Extract config management into AgoraRteConfigImpl class
- Extract player logic into AgoraRtePlayerImpl class
- Extract canvas logic into AgoraRteCanvasImpl class
- Refactor AgoraRteImpl to delegate to specialized classes
- Add iOS bridge methods for config setters
Split Android RTE into modules (RTE, Config, Player, Canvas) and extract enums to separate file
Support adding PlatformView to Canvas for video display in RTE player
Remove iOS config wrapper class and translate all comments to English
Remove unnecessary getConfigs calls and AgoraRTEConfig wrapper class
- Add AgoraRteVideoView component to encapsulate platform view creation and canvas binding logic
- Split RTE Player example into modular components:
  * rte_canvas_config_tab: Canvas configuration tab
  * rte_config_tab: RTE configuration tab
  * rte_info_log_view: Info and log view
  * rte_playback_tab: Playback control tab
  * rte_player_config_tab: Player configuration tab
- Optimize AgoraRTECanvas implementation for Android/iOS platforms
- Simplify rte_player.dart main file to improve code maintainability
Add useStringUid configuration support and update native SDK dependencies
- Extract config classes from implementation files
- Use JsonSerializable and code generation for RTE/Canvas/Player configs
- Remove old config implementation files
- Update example code to adapt new config approach
- Stop all players before destroying engine to ensure audio/video stops
- Add error handling to continue destroy process even if player stop fails
- Prevent resource leaks by ensuring proper cleanup
@ZGaopeng ZGaopeng force-pushed the dev/release/6.5-rte branch from 58b44f5 to d71a141 Compare January 27, 2026 06:59
@ZGaopeng ZGaopeng force-pushed the dev/release/6.5-rte branch from 1e0d4c3 to dd8f060 Compare January 30, 2026 07:10
@ZGaopeng ZGaopeng closed this Jan 30, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants