diff --git a/CHANGELOG.md b/CHANGELOG.md index 12f0fe1..d534e07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ ## 1.3.4 - Fixes error [#137](https://github.com/AgoraIO-Community/VideoUIKit-Flutter/issues/137) +- Setting RTC to v6.1.0 and RTM to v1.5.0 ## 1.3.3 diff --git a/lib/models/agora_rtm_mute_request.dart b/lib/models/agora_rtm_mute_request.dart index 5532a5a..97f22e0 100644 --- a/lib/models/agora_rtm_mute_request.dart +++ b/lib/models/agora_rtm_mute_request.dart @@ -99,7 +99,7 @@ class AgoraUIKit { String platform = platformStr(); String framework = "flutter"; - String version = "1.3.3"; + String version = "1.3.4"; AgoraUIKit.fromJson(Map json) : platform = json['platform'], @@ -116,8 +116,8 @@ class AgoraUIKit { /// Class to store and share the Agora version for RTC and RTM class AgoraVersions { AgoraVersions(); - static String staticRTM = '1.1.1'; - static String staticRTC = '5.2.0'; + static String staticRTM = '1.5.0'; + static String staticRTC = '6.1.0'; String rtm = AgoraVersions.staticRTM; String rtc = AgoraVersions.staticRTC; diff --git a/pubspec.yaml b/pubspec.yaml index 549e801..af48fac 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: agora_uikit description: Flutter plugin to simply integrate Agora Video Calling or Live Video Streaming to your app with just a few lines of code. -version: 1.3.3 +version: 1.3.4 homepage: https://www.agora.io/en/ repository: https://github.com/AgoraIO-Community/VideoUIKit-Flutter