diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f02e20..67e022e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +### 1.26.0 +- Update native Android and iOS modules to use Voximplant Android SDK 2.27.0 and Voximplant iOS SDK 2.44.0 + ### 1.25.0 - Update native Android and iOS modules to use Voximplant Android SDK 2.26.0 and Voximplant iOS SDK 2.43.0 - Introduce Client.unregisterIMPushNotificationsTokenIOS API to unregister APNs push notification token for IM messages diff --git a/android/build.gradle b/android/build.gradle index c65e9b7..3e336a2 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -36,5 +36,5 @@ repositories { dependencies { implementation fileTree(dir: "libs", include: ["*.jar"]) implementation "com.facebook.react:react-native:+" - implementation "com.voximplant:voximplant-sdk:2.26.0" + implementation "com.voximplant:voximplant-sdk:2.27.0" } diff --git a/android/src/main/java/com/voximplant/reactnative/VIClientModule.java b/android/src/main/java/com/voximplant/reactnative/VIClientModule.java index ea7b760..bcd2df1 100644 --- a/android/src/main/java/com/voximplant/reactnative/VIClientModule.java +++ b/android/src/main/java/com/voximplant/reactnative/VIClientModule.java @@ -88,7 +88,7 @@ public String getName() { @ReactMethod public void init(boolean enableVideo, boolean enableDebugLogging, boolean enableCameraMirroring, boolean enableLogcatLogging, String videoCodec, String packageName, String requestAudioFocusMode) { - Voximplant.subVersion = "react-1.25.0"; + Voximplant.subVersion = "react-1.26.0"; ClientConfig config = new ClientConfig(); config.enableVideo = enableVideo; config.enableDebugLogging = enableDebugLogging; diff --git a/ios/VIClientModule.m b/ios/VIClientModule.m index 87919ab..f50cdb4 100644 --- a/ios/VIClientModule.m +++ b/ios/VIClientModule.m @@ -91,7 +91,7 @@ - (void)stopObserving { } RCT_REMAP_METHOD(initWithOptions, init:(VILogLevel)logLevel bundleId:(NSString *)bundleId h264RecoveryMode:(BOOL)h264RecoveryMode) { - [VIClient setVersionExtension:@"react-1.25.0"]; + [VIClient setVersionExtension:@"react-1.26.0"]; [VIClient setLogLevel:logLevel]; if (h264RecoveryMode) { RTCInitFieldTrialDictionary(@{ diff --git a/package.json b/package.json index f4c670e..f0a58f2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-native-voximplant", - "version": "1.25.0", + "version": "1.26.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 b55e309..de07eae 100644 --- a/react-native-voximplant.podspec +++ b/react-native-voximplant.podspec @@ -7,7 +7,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.25.0' - s.dependency 'VoxImplantSDK', '2.43.0' + s.version = '1.26.0' + s.dependency 'VoxImplantSDK', '2.44.0' s.dependency 'React' end