Skip to content

Commit

Permalink
Update native modules to use Voximplant Android SDK 2.37.0 and Voximp…
Browse files Browse the repository at this point in the history
…lant iOS SDK 2.50.0, update changelog and sdk version to 1.40.0
  • Loading branch information
YuliaGrigorieva committed Sep 22, 2023
1 parent 2c06c40 commit f1714bc
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 10 deletions.
17 changes: 11 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,20 @@
# Changelog

### 1.40.0
- Update native Android and iOS modules to use Voximplant Android SDK 2.37.0 and Voximplant iOS SDK 2.50.0
- Introduce new API to handle video receive stop on a remote video stream and its reason (see 1.40.0-beta changelog)

### 1.40.0-beta
- This is a beta SDK version. Not recommended for production use.
- Update native Android and iOS modules to use Voximplant Android SDK 2.37.0-beta and Voximplant iOS SDK 2.50.0-beta
- Endpoint.startReceiving and Endpoint.stopReceiving API return type void instead of Promise. The result of the API call is now provided via events:
- EndpointEvents.StartReceivingVideoStream
- EndpointEvents.StopReceivingVideoStream
- [Endpoint.startReceiving](https://voximplant.com/docs/references/reactnative/voximplant/endpoint#startreceiving) and [Endpoint.stopReceiving](https://voximplant.com/docs/references/reactnative/voximplant/endpoint#stopreceiving) API return type void instead of Promise. The result of the API call is now provided via events:
- [EndpointEvents.StartReceivingVideoStream](https://voximplant.com/docs/references/reactnative/voximplant/endpointeventtypes#startreceivevideostream)
- [EndpointEvents.StopReceivingVideoStream](https://voximplant.com/docs/references/reactnative/voximplant/endpointeventtypes#stopreceivevideostream)
- Introduce new API to handle video receive stop on a remote video stream:
- EndpointEvents.StartReceivingVideoStream
- EndpointEvents.StopReceivingVideoStream
- Introduce new API VideoStreamReceiveStopReason to handle the reason for video receive stop on a remote video stream.
- [EndpointEvents.StartReceivingVideoStream](https://voximplant.com/docs/references/reactnative/voximplant/endpointeventtypes#startreceivevideostream)
- [EndpointEvents.StopReceivingVideoStream](https://voximplant.com/docs/references/reactnative/voximplant/endpointeventtypes#stopreceivevideostream)
- Introduce new API [VideoStreamReceiveStopReason](https://voximplant.com/docs/references/reactnative/voximplant/videostreamreceivestopreason) to handle the reason for video receive stop on a remote video stream.


### 1.38.0
- Update native Android and iOS modules to use Voximplant Android SDK 2.35.3 and Voximplant iOS SDK 2.48.2
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ repositories {
dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation "com.facebook.react:react-native:+"
implementation "com.voximplant:voximplant-sdk:2.37.0-beta"
implementation "com.voximplant:voximplant-sdk:2.37.0"
implementation "androidx.annotation:annotation:1.5.0"
}

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.40.0-beta",
"version": "1.40.0",
"description": "VoxImplant Mobile SDK for embedding voice and video communication into React Native apps.",
"nativePackage": true,
"keywords": [
Expand Down
4 changes: 2 additions & 2 deletions react-native-voximplant.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ 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.40.0-beta'
s.dependency 'VoxImplantSDK', '2.50.0-beta'
s.version = '1.40.0'
s.dependency 'VoxImplantSDK', '2.50.0'
if fabric_enabled
s.compiler_flags = folly_compiler_flags + " -DRCT_NEW_ARCH_ENABLED=1"
s.pod_target_xcconfig = {
Expand Down

0 comments on commit f1714bc

Please sign in to comment.