Skip to content

Commit

Permalink
Update changelog and sdk version to 1.25.0
Browse files Browse the repository at this point in the history
  • Loading branch information
YuliaGrigorieva committed Aug 20, 2021
1 parent 3937477 commit afee02c
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

### 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
- Fix (iOS): Client.sendVideo API is rejected with CallError.INCORRECT_OPERATION if video is enabled before the call is connected

### 1.24.0
- Update native Android and iOS modules to use Voximplant Android SDK 2.21.2 and Voximplant iOS SDK 2.36.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.24.0";
Voximplant.subVersion = "react-1.25.0";
ClientConfig config = new ClientConfig();
config.enableVideo = enableVideo;
config.enableDebugLogging = enableDebugLogging;
Expand Down
2 changes: 1 addition & 1 deletion ios/VIClientModule.m
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ - (void)stopObserving {
}

RCT_REMAP_METHOD(initWithOptions, init:(VILogLevel)logLevel bundleId:(NSString *)bundleId h264RecoveryMode:(BOOL)h264RecoveryMode) {
[VIClient setVersionExtension:@"react-1.24.0"];
[VIClient setVersionExtension:@"react-1.25.0"];
[VIClient setLogLevel:logLevel];
if (h264RecoveryMode) {
RTCInitFieldTrialDictionary(@{
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-voximplant",
"version": "1.24.0",
"version": "1.25.0",
"description": "VoxImplant Mobile SDK for embedding voice and video communication into React Native apps.",
"nativePackage": true,
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion react-native-voximplant.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -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.24.0'
s.version = '1.25.0'
s.dependency 'VoxImplantSDK', '2.43.0'
s.dependency 'React'
end

0 comments on commit afee02c

Please sign in to comment.