Skip to content

Commit

Permalink
Merge pull request #148 from voximplant/update_dependencies
Browse files Browse the repository at this point in the history
Update project dependencies
  • Loading branch information
pe1ros authored Mar 17, 2022
2 parents 1c98b98 + e58fcf9 commit d47b1d3
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 11 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.29.1
- Remove unused devDependencies

### 1.29.0
- Update native Android and iOS modules to use Voximplant Android SDK 2.31.0 and Voximplant iOS SDK 2.46.3
- Introduce new API to get a call duration - [Call.getDuration](https://voximplant.com/docs/references/reactnative/voximplant/call#getduration)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,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.29.0";
Voximplant.subVersion = "react-1.29.1";
ClientConfig config = new ClientConfig();
config.enableVideo = enableVideo;
config.enableDebugLogging = enableDebugLogging;
Expand Down
2 changes: 1 addition & 1 deletion ios/RNVIClientModule.m
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ - (void)stopObserving {
}

RCT_REMAP_METHOD(initWithOptions, init:(VILogLevel)logLevel bundleId:(NSString *)bundleId h264RecoveryMode:(BOOL)h264RecoveryMode) {
[VIClient setVersionExtension:@"react-1.29.0"];
[VIClient setVersionExtension:@"react-1.29.1"];
[VIClient setLogLevel:logLevel];
if (h264RecoveryMode) {
RTCInitFieldTrialDictionary(@{
Expand Down
9 changes: 1 addition & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-voximplant",
"version": "1.29.0",
"version": "1.29.1",
"description": "VoxImplant Mobile SDK for embedding voice and video communication into React Native apps.",
"nativePackage": true,
"keywords": [
Expand All @@ -18,17 +18,10 @@
"engines": {
"node": ">=4"
},
"scripts": {
"doc-as-json": "jsdoc -X ./index.js"
},
"author": "Zingaya Inc. <[email protected]> (http://voximplant.com)",
"license": "MIT",
"homepage": "https://voximplant.com",
"peerDependencies": {
"react-native": ">= 0.47.0"
},
"devDependencies": {
"jsdoc": "^3.5.5",
"jsdoc-cli": "^1.0.1"
}
}
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.29.0'
s.version = '1.29.1'
s.dependency 'VoxImplantSDK', '2.46.3'
s.dependency 'React'
end

0 comments on commit d47b1d3

Please sign in to comment.