From 8bb064c3d4cd668e426665a9bc88f157107aca93 Mon Sep 17 00:00:00 2001 From: YuliaGrigorieva Date: Mon, 20 May 2024 20:24:48 +0300 Subject: [PATCH] Update changelog and sdk version to 3.12.0 --- CHANGELOG.md | 5 +++++ android/build.gradle | 2 +- .../com/voximplant/flutter_voximplant/VoximplantPlugin.java | 2 +- ios/Classes/VoximplantPlugin.m | 2 +- pubspec.yaml | 2 +- 5 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ebf7689..9a3848b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,9 @@ # Changelog +## 3.12.0 +- Update Android and iOS platform code to use Voximplant Android SDK 2.39.0 and Voximplant iOS SDK 2.52.0 +- Change minimum iOS deployment target to 12.0 +- Introduce [VINode](/docs/references/fluttersdk/client/vinode) enum +- [VIClient.connect](/docs/references/fluttersdk/client/viclient#connect) API now takes an optional parameter to specify the node the Voximplant account belongs to ## 3.11.1 * Fix(android): End all calls on Flutter engine detach diff --git a/android/build.gradle b/android/build.gradle index 7e23932..ff31333 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -1,5 +1,5 @@ group 'com.voximplant.flutter_voximplant' -version '3.11.1' +version '3.12.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 9004f82..a391666 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.11.1"; + Voximplant.subVersion = "flutter-3.12.0"; } private void configure(Context context, TextureRegistry textures, BinaryMessenger messenger) { diff --git a/ios/Classes/VoximplantPlugin.m b/ios/Classes/VoximplantPlugin.m index 6277224..1532a68 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.11.1"]; + [VIClient setVersionExtension:@"flutter-3.12.0"]; } return self; } diff --git a/pubspec.yaml b/pubspec.yaml index 5a1b89b..bf03630 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.11.1 +version: 3.12.0 homepage: https://voximplant.com repository: https://github.com/voximplant/flutter_voximplant