diff --git a/CHANGELOG.md b/CHANGELOG.md index 76f63e4..9d36230 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 3.11.0 +* Update Android and iOS platform code to use Voximplant Android SDK 2.38.2 and Voximplant iOS SDK 2.51.0 +* Fix(android): [VILocalVideoDegradation](/docs/references/fluttersdk/call/vilocalvideodegradation) is not processed correctly in native code + ## 3.10.1 * Fix(android): crash if the resolution of the video stream changes at the same moment when the renderer is removed diff --git a/android/build.gradle b/android/build.gradle index fc2b57e..d26e420 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -1,5 +1,5 @@ group 'com.voximplant.flutter_voximplant' -version '3.10.1' +version '3.11.0' buildscript { repositories { diff --git a/android/src/main/java/com/voximplant/flutter_voximplant/VoximplantPlugin.java b/android/src/main/java/com/voximplant/flutter_voximplant/VoximplantPlugin.java index 1c8da3e..5b738bb 100644 --- a/android/src/main/java/com/voximplant/flutter_voximplant/VoximplantPlugin.java +++ b/android/src/main/java/com/voximplant/flutter_voximplant/VoximplantPlugin.java @@ -40,7 +40,7 @@ public class VoximplantPlugin implements MethodCallHandler, FlutterPlugin, Event private AudioFileManager mAudioFileManager; public VoximplantPlugin() { - Voximplant.subVersion = "flutter-3.10.1"; + Voximplant.subVersion = "flutter-3.11.0"; } private void configure(Context context, TextureRegistry textures, BinaryMessenger messenger) { diff --git a/ios/Classes/VoximplantPlugin.m b/ios/Classes/VoximplantPlugin.m index 6051f71..33393ca 100644 --- a/ios/Classes/VoximplantPlugin.m +++ b/ios/Classes/VoximplantPlugin.m @@ -59,7 +59,7 @@ - (instancetype)initWithRegistrar:(NSObject *)registrar self.audioFileManager = [[VIAudioFileManager alloc] initWithPlugin:self]; self.cameraModule = [[VICameraModule alloc] init]; self.messagingModule = [[VIMessagingModule alloc] initWithRegistrar:self.registrar]; - [VIClient setVersionExtension:@"flutter-3.10.1"]; + [VIClient setVersionExtension:@"flutter-3.11.0"]; } return self; } diff --git a/ios/flutter_voximplant.podspec b/ios/flutter_voximplant.podspec index 9b60e7f..44adb11 100644 --- a/ios/flutter_voximplant.podspec +++ b/ios/flutter_voximplant.podspec @@ -3,7 +3,7 @@ # Pod::Spec.new do |s| s.name = 'flutter_voximplant' - s.version = '3.10.1' + s.version = '3.11.0' s.summary = 'Voximplant Flutter SDK' s.description = <<-DESC Voximplant plugin for embedding voice and video communication into Flutter applications. diff --git a/pubspec.yaml b/pubspec.yaml index bdd1b2c..efe494e 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: flutter_voximplant description: Voximplant plugin for embedding voice and video communication into Flutter applications. -version: 3.10.1 +version: 3.11.0 homepage: https://voximplant.com repository: https://github.com/voximplant/flutter_voximplant