Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: upgrade native sdk 4.1.1.28 #1671

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
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
5 changes: 2 additions & 3 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,8 @@ dependencies {
if (isDev(project)) {
implementation fileTree(dir: "libs", include: ["*.jar"])
} else {
api 'io.agora.rtc:iris-rtc:4.1.1.25-sp.1'
api 'io.agora.rtc:agora-special-full:4.1.1.25'
api 'io.agora.rtc:full-screen-sharing:4.1.1.25'
api 'io.agora.rtc:agora-special-full:4.1.1.28'
api 'io.agora.rtc:full-screen-sharing:4.1.1.28'
}
}

Expand Down
4 changes: 2 additions & 2 deletions ios/agora_rtc_engine.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ Pod::Spec.new do |s|
s.source = { :path => '.' }
s.source_files = 'Classes/**/*.{h,mm,m,swift}'
s.dependency 'Flutter'
s.dependency 'AgoraIrisRTC_iOS', '4.1.1.25-sp.1'
s.dependency 'AgoraRtcEngine_Special_iOS', '4.1.1.25'
s.dependency 'AgoraIrisRTC_iOS', '4.1.1.28-build.2'
s.dependency 'AgoraRtcEngine_Special_iOS', '4.1.1.28'
# s.dependency 'AgoraRtcWrapper'
s.platform = :ios, '9.0'
s.swift_version = '5.0'
Expand Down
4 changes: 2 additions & 2 deletions macos/agora_rtc_engine.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ A new flutter plugin project.
s.source_files = 'Classes/**/*.{h,mm}', 'Classes/File.swift'
s.dependency 'FlutterMacOS'
# s.dependency 'AgoraRtcWrapper'
s.dependency 'AgoraRtcEngine_Special_macOS', '4.1.1.25'
s.dependency 'AgoraIrisRTC_macOS', '4.1.1.25-sp.1'
s.dependency 'AgoraRtcEngine_Special_macOS', '4.1.1.28'
s.dependency 'AgoraIrisRTC_macOS', '4.1.1.28-build.2'

s.platform = :osx, '10.11'
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: agora_rtc_engine
description: >-
Flutter plugin of Agora RTC SDK, allow you to simply integrate Agora Video
Calling or Live Video Streaming to your app with just a few lines of code.
version: 6.1.1-sp.41125
version: 6.1.1-sp.41128
homepage: https://www.agora.io
repository: https://github.com/AgoraIO-Extensions/Agora-Flutter-SDK/tree/main
environment:
Expand Down
8 changes: 4 additions & 4 deletions scripts/artifacts_version.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
set -e

export IRIS_CDN_URL_ANDROID="https://download.agora.io/sdk/release/iris_4.1.1.25-sp.1_DCG_Android_Video_20240118_1208.zip"
export IRIS_CDN_URL_IOS="https://download.agora.io/sdk/release/iris_4.1.1.25-sp.1_DCG_iOS_Video_20240118_1210.zip"
export IRIS_CDN_URL_MACOS="https://download.agora.io/sdk/release/iris_4.1.1.25-sp.1_DCG_Mac_Video_20240118_1208.zip"
export IRIS_CDN_URL_WINDOWS="https://download.agora.io/sdk/release/iris_4.1.1.25-sp.1_DCG_Windows_Video_20240118_1208.zip"
export IRIS_CDN_URL_ANDROID="https://download.agora.io/sdk/release/iris_4.1.1.28-build.2_DCG_Android_Video_20240402_0545.zip"
export IRIS_CDN_URL_IOS="https://download.agora.io/sdk/release/iris_4.1.1.28-build.2_DCG_iOS_Video_20240402_0545.zip"
export IRIS_CDN_URL_MACOS="https://download.agora.io/sdk/release/iris_4.1.1.28-build.2_DCG_Mac_Video_20240402_0545.zip"
export IRIS_CDN_URL_WINDOWS="https://download.agora.io/sdk/release/iris_4.1.1.28-build.2_DCG_Windows_Video_20240402_0545.zip"
4 changes: 2 additions & 2 deletions windows/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ project(${PROJECT_NAME} LANGUAGES CXX)
# not be changed
set(PLUGIN_NAME "agora_rtc_engine_plugin")

set(IRIS_SDK_DOWNLOAD_URL "https://download.agora.io/sdk/release/iris_4.1.1.25-sp.1_DCG_Windows_Video_20240118_1208.zip")
set(IRIS_SDK_DOWNLOAD_NAME "iris_4.1.1.25-sp.1_DCG_Windows")
set(IRIS_SDK_DOWNLOAD_URL "https://download.agora.io/sdk/release/iris_4.1.1.28-build.2_DCG_Windows_Video_20240402_0545.zip")
set(IRIS_SDK_DOWNLOAD_NAME "iris_4.1.1.28-build.2_DCG_Windows")
set(RTC_SDK_DOWNLOAD_NAME "Agora_Native_SDK_for_Windows_FULL")
set(IRIS_SDK_VERSION "v3_6_2_fix.1")

Expand Down
Loading