Skip to content

Commit

Permalink
Update native modules to use Voximplant Android SDK 2.13.0 and Voximp…
Browse files Browse the repository at this point in the history
…lant iOS SDK 2.22.0, update SDK version to 1.11.0
  • Loading branch information
YuliaGrigorieva committed Sep 17, 2019
1 parent 59ce4db commit a6c1d2c
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

### 1.11.0
- Update native Android and iOS modules to use Voximplant Android SDK 2.13.0 and Voximplant iOS SDK 2.22.0
- Fix: build issue with Android Gradle Plugin 3.5.0

### 1.10.0
- Update native Android and iOS modules to use Voximplant Android SDK 2.12.2 and Voximplant iOS SDK 2.21.3
- Improvements for VideoView component on Android: add/remove SurfaceViewRenderer to/from the parent ViewGroup on
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,5 @@ repositories {
dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation "com.facebook.react:react-native:+"
implementation "com.voximplant:voximplant-sdk:2.12.2"
implementation "com.voximplant:voximplant-sdk:2.13.0"
}
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public String getName() {
public void init(boolean enableVideo, boolean enableHWAcceleration, boolean provideLocalFramesInByteBuffers,
boolean enableDebugLogging, boolean enableCameraMirroring, boolean enableLogcatLogging,
String videoCodec, String packageName, String requestAudioFocusMode) {
Voximplant.subVersion = "react-1.10.0";
Voximplant.subVersion = "react-1.11.0";
ClientConfig config = new ClientConfig();
config.enableVideo = enableVideo;
config.enableHWAccelerationForDecoding = enableHWAcceleration;
Expand Down
2 changes: 1 addition & 1 deletion ios/VIClientModule.m
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ - (void)stopObserving {
}

RCT_REMAP_METHOD(initWithOptions, init:(VILogLevel)logLevel bundleId:(NSString *)bundleId) {
[VIClient setVersionExtension:@"react-1.10.0"];
[VIClient setVersionExtension:@"react-1.11.0"];
[VIClient setLogLevel:logLevel];
if (bundleId) {
_client = [CallManager getClientWithBundleId:bundleId];
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.10.0",
"version": "1.11.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 @@ -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.10.0'
s.dependency 'VoxImplantSDK', '2.21.3'
s.version = '1.11.0'
s.dependency 'VoxImplantSDK', '2.22.0'
s.dependency 'React'
end

0 comments on commit a6c1d2c

Please sign in to comment.