@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.
- package/android/src/main/assets/kaleyra_video_wrapper_info.txt +1 -1
- package/ios/PluginInfo/_KaleyraVideoHybridVersionInfo.swift +1 -1
- package/native-bridge/android/build.gradle +1 -1
- package/native-bridge/iOS/Podfile.lock +6 -6
- package/native-bridge/iOS/Source/User Details/Providers/UsersDetailsProvider.swift +2 -2
- package/package.json +1 -1
- package/video-react-native-module.podspec +2 -2
|
@@ -1 +1 @@
|
|
|
1
|
-
React/1.
|
|
1
|
+
React/1.4.1
|
|
@@ -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.
|
|
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.
|
|
3
|
-
- Bandyer/Core (= 3.11.
|
|
4
|
-
- Bandyer/WebRTC (= 3.11.
|
|
5
|
-
- Bandyer/Core (3.11.
|
|
6
|
-
- Bandyer/WebRTC (3.11.
|
|
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:
|
|
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: "
|
|
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) ?? "
|
|
37
|
+
return .init(type: .generic, value: formatter.string(for: details) ?? userIds.joined(separator: ", ") )
|
|
38
38
|
}
|
|
39
39
|
}
|
package/package.json
CHANGED
|
@@ -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.
|
|
22
|
+
s.dependency "Bandyer/Core", "~> 3.12.1"
|
|
23
23
|
else
|
|
24
|
-
s.dependency "Bandyer", "~> 3.
|
|
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.
|