From af515dbcd940f30bbf4b83c36e7684a512d4fb85 Mon Sep 17 00:00:00 2001 From: YuliaGrigorieva Date: Mon, 22 May 2023 20:43:12 +0300 Subject: [PATCH] Update changelog and sdk version to 1.37.0 --- CHANGELOG.md | 4 ++++ .../main/java/com/voximplant/reactnative/VIClientModule.java | 2 +- ios/RNVIClientModule.m | 2 +- package.json | 2 +- react-native-voximplant.podspec | 2 +- 5 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cc1e12d..c84dbfa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +### 1.37.0 +- Fabric support for VideoView component +- Update native Android and iOS modules to use Voximplant Android SDK 2.35.2 and Voximplant iOS SDK 2.47.0 + ### 1.36.0 - Introduce [CameraManager.useOrientationEventListener](https://voximplant.com/docs/references/reactnative/voximplant/hardware/cameramanager#useorientationeventlistener) API to use Android orientation event listener to rotate video frames diff --git a/android/src/main/java/com/voximplant/reactnative/VIClientModule.java b/android/src/main/java/com/voximplant/reactnative/VIClientModule.java index d93f876..858c8f1 100644 --- a/android/src/main/java/com/voximplant/reactnative/VIClientModule.java +++ b/android/src/main/java/com/voximplant/reactnative/VIClientModule.java @@ -101,7 +101,7 @@ public String getName() { //region React methods @ReactMethod public void init(ReadableMap settings) { - Voximplant.subVersion = "react-1.36.0"; + Voximplant.subVersion = "react-1.37.0"; ClientConfig config = Utils.convertClientConfigFromMap(settings); mClient = Voximplant.getClientInstance(Executors.newSingleThreadExecutor(), mReactContext, config); mClient.setClientIncomingCallListener(this); diff --git a/ios/RNVIClientModule.m b/ios/RNVIClientModule.m index fce1291..5a4ac9d 100644 --- a/ios/RNVIClientModule.m +++ b/ios/RNVIClientModule.m @@ -80,7 +80,7 @@ - (void)stopObserving { RCT_EXPORT_METHOD(initWithOptions:(NSDictionary *)options) { VILogLevel logLevel = [RNVIUtils convertLogLevelFromString:[options objectForKey:@"logLevel"]]; [VIClient setLogLevel:logLevel]; - [VIClient setVersionExtension:@"react-1.36.0"]; + [VIClient setVersionExtension:@"react-1.37.0"]; BOOL h264RecoveryMode = [[options objectForKey:@"h264RecoveryMode"] boolValue]; if (h264RecoveryMode) { RTCInitFieldTrialDictionary(@{ diff --git a/package.json b/package.json index ae066d4..7f3f9ac 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-native-voximplant", - "version": "1.36.0", + "version": "1.37.0", "description": "VoxImplant Mobile SDK for embedding voice and video communication into React Native apps.", "nativePackage": true, "keywords": [ diff --git a/react-native-voximplant.podspec b/react-native-voximplant.podspec index db4822b..c84548d 100644 --- a/react-native-voximplant.podspec +++ b/react-native-voximplant.podspec @@ -10,7 +10,7 @@ Pod::Spec.new do |s| s.homepage = 'https://github.com/voximplant/react-native-voximplant' s.source = {:path => './ios/'} s.summary = 'RN voximplant' - s.version = '1.36.0' + s.version = '1.37.0' s.dependency 'VoxImplantSDK', '2.47.0' if fabric_enabled s.compiler_flags = folly_compiler_flags + " -DRCT_NEW_ARCH_ENABLED=1"