Skip to content

Commit

Permalink
Update SDK version to 1.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
YuliaGrigorieva committed Aug 12, 2019
1 parent 489cfe9 commit 4f69a7d
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

### 1.9.2
- Android: get compileSdkVersion and targetSdkVersion from the root project or use the version 28 as default

### 1.9.1
- Support React Native 0.60 autolinking

Expand Down
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.9.1";
Voximplant.subVersion = "react-1.9.2";
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.9.1"];
[VIClient setVersionExtension:@"react-1.9.2"];
[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.9.1",
"version": "1.9.2",
"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.9.1'
s.version = '1.9.2'
s.dependency 'VoxImplantSDK', '2.20.7'
s.dependency 'React'
end

0 comments on commit 4f69a7d

Please sign in to comment.