@kaleyra/video-react-native-module 1.3.3 → 1.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- React/1.3.3
1
+ React/1.4.1
@@ -7,7 +7,7 @@ import Foundation
7
7
  class _KaleyraVideoHybridVersionInfo: NSObject {
8
8
 
9
9
  @objc
10
- static let krvVersion: String = "1.3.3"
10
+ static let krvVersion: String = "1.4.1"
11
11
 
12
12
  @objc
13
13
  static let krvPlatform: String = "react"
@@ -48,7 +48,7 @@ android {
48
48
  dependencies {
49
49
  implementation 'com.google.code.gson:gson:2.9.1'
50
50
  implementation "com.kaleyra:collaboration-suite-utils:3.0.6"
51
- implementation "com.bandyer:bandyer-android-sdk:3.9.1"
51
+ implementation "com.bandyer:bandyer-android-sdk:3.9.2"
52
52
  implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
53
53
  compileOnly "org.jetbrains.kotlinx:kotlinx-serialization-json:1.3.1"
54
54
  implementation "androidx.room:room-runtime:2.4.0-beta02"
@@ -1,9 +1,9 @@
1
1
  PODS:
2
- - Bandyer (3.11.0):
3
- - Bandyer/Core (= 3.11.0)
4
- - Bandyer/WebRTC (= 3.11.0)
5
- - Bandyer/Core (3.11.0)
6
- - Bandyer/WebRTC (3.11.0)
2
+ - Bandyer (3.11.1):
3
+ - Bandyer/Core (= 3.11.1)
4
+ - Bandyer/WebRTC (= 3.11.1)
5
+ - Bandyer/Core (3.11.1)
6
+ - Bandyer/WebRTC (3.11.1)
7
7
  - SwiftHamcrest (2.2.4)
8
8
 
9
9
  DEPENDENCIES:
@@ -16,7 +16,7 @@ SPEC REPOS:
16
16
  - SwiftHamcrest
17
17
 
18
18
  SPEC CHECKSUMS:
19
- Bandyer: aad5f024c79d1935147cfae4c0457182da41c137
19
+ Bandyer: 310861e4191a19084a712b8a42a6e83e2c17f159
20
20
  SwiftHamcrest: a45dd878978049c0953259aa01c34fd7258d0340
21
21
 
22
22
  PODFILE CHECKSUM: 66fc4f81333eb6e98b7f40196dbf5ee1fa5c1996
@@ -32,8 +32,8 @@ class UsersDetailsProvider: NSObject, UserDetailsProvider {
32
32
  }
33
33
 
34
34
  private func handleFor(userIds: [String]) -> CXHandle {
35
- guard !userIds.isEmpty else { return .init(type: .generic, value: "Unknown") }
35
+ guard !userIds.isEmpty else { return .init(type: .generic, value: "") }
36
36
  let details = detailsFor(userIds: userIds)
37
- return .init(type: .generic, value: formatter.string(for: details) ?? "Unknown" )
37
+ return .init(type: .generic, value: formatter.string(for: details) ?? userIds.joined(separator: ", ") )
38
38
  }
39
39
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kaleyra/video-react-native-module",
3
- "version": "1.3.3",
3
+ "version": "1.4.1",
4
4
  "private": false,
5
5
  "description": "Kaleyra Video module for react native.",
6
6
  "main": "lib/commonjs/index.js",
@@ -19,9 +19,9 @@ Pod::Spec.new do |s|
19
19
  s.dependency "React-Core"
20
20
 
21
21
  if defined?($KaleyraNoWebRTC)
22
- s.dependency "Bandyer/Core", "~> 3.11.1"
22
+ s.dependency "Bandyer/Core", "~> 3.12.1"
23
23
  else
24
- s.dependency "Bandyer", "~> 3.11.1"
24
+ s.dependency "Bandyer", "~> 3.12.1"
25
25
  end
26
26
 
27
27
  # Don't install the dependencies when we run `pod install` in the old architecture.