@kaleyra/video-react-native-module 1.4.1 → 1.6.0
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/build.gradle +2 -1
- 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 +1 -1
- package/native-bridge/iOS/Podfile.lock +9 -9
- package/package.json +8 -9
- package/video-react-native-module.podspec +5 -2
package/android/build.gradle
CHANGED
|
@@ -82,8 +82,9 @@ def kotlin_version = getExtOrDefault("kotlinVersion")
|
|
|
82
82
|
dependencies {
|
|
83
83
|
// For < 0.71, this will be from the local maven repo
|
|
84
84
|
// For > 0.71, this will be replaced by `com.facebook.react:react-android:$version` by react gradle plugin
|
|
85
|
+
// https://github.com/facebook/react-native/blob/d280772ea4b2b945340e88c6b95ffb4c0dd56dac/packages/react-native/android/README.md?plain=1#L13
|
|
85
86
|
//noinspection GradleDynamicVersion
|
|
86
|
-
implementation "com.facebook.react:react-
|
|
87
|
+
implementation "com.facebook.react:react-native:$REACT_NATIVE_VERSION"
|
|
87
88
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
88
89
|
}
|
|
89
90
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
React/1.
|
|
1
|
+
React/1.6.0
|
|
@@ -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.
|
|
51
|
+
implementation "com.bandyer:bandyer-android-sdk:3.10.0"
|
|
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,13 +1,13 @@
|
|
|
1
1
|
PODS:
|
|
2
|
-
- Bandyer (3.
|
|
3
|
-
- Bandyer/Core (= 3.
|
|
4
|
-
- Bandyer/WebRTC (= 3.
|
|
5
|
-
- Bandyer/Core (3.
|
|
6
|
-
- Bandyer/WebRTC (3.
|
|
2
|
+
- Bandyer (3.12.1):
|
|
3
|
+
- Bandyer/Core (= 3.12.1)
|
|
4
|
+
- Bandyer/WebRTC (= 3.12.1)
|
|
5
|
+
- Bandyer/Core (3.12.1)
|
|
6
|
+
- Bandyer/WebRTC (3.12.1)
|
|
7
7
|
- SwiftHamcrest (2.2.4)
|
|
8
8
|
|
|
9
9
|
DEPENDENCIES:
|
|
10
|
-
- Bandyer
|
|
10
|
+
- Bandyer (~> 3.12.1)
|
|
11
11
|
- SwiftHamcrest (~> 2.2)
|
|
12
12
|
|
|
13
13
|
SPEC REPOS:
|
|
@@ -16,9 +16,9 @@ SPEC REPOS:
|
|
|
16
16
|
- SwiftHamcrest
|
|
17
17
|
|
|
18
18
|
SPEC CHECKSUMS:
|
|
19
|
-
Bandyer:
|
|
19
|
+
Bandyer: 85a49f0c6c3e2084075991dc05a37ae3b54ca9d8
|
|
20
20
|
SwiftHamcrest: a45dd878978049c0953259aa01c34fd7258d0340
|
|
21
21
|
|
|
22
|
-
PODFILE CHECKSUM:
|
|
22
|
+
PODFILE CHECKSUM: eec3e41640e9473d6444b76c82ece16fcb50757e
|
|
23
23
|
|
|
24
|
-
COCOAPODS: 1.
|
|
24
|
+
COCOAPODS: 1.15.2
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kaleyra/video-react-native-module",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Kaleyra Video module for react native.",
|
|
6
6
|
"main": "lib/commonjs/index.js",
|
|
@@ -48,10 +48,9 @@
|
|
|
48
48
|
"doc": "typedoc",
|
|
49
49
|
"openDoc": "open ./docs/index.html",
|
|
50
50
|
"version": "npm run doc && python3 update_plugin_version.py && npm run buildJs && git add . ",
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"patch": "npm version patch -m \"Updated to version %s\""
|
|
51
|
+
"major": "npm version major -m \"chore: updated to version %s\"",
|
|
52
|
+
"minor": "npm version minor -m \"chore: updated to version %s\"",
|
|
53
|
+
"patch": "npm version patch -m \"chore: updated to version %s\""
|
|
55
54
|
},
|
|
56
55
|
"keywords": [
|
|
57
56
|
"react-native",
|
|
@@ -74,8 +73,8 @@
|
|
|
74
73
|
"@react-native-community/eslint-config": "^3.0.2",
|
|
75
74
|
"@release-it/conventional-changelog": "^5.0.0",
|
|
76
75
|
"@types/jest": "^28.1.2",
|
|
77
|
-
"@types/react": "~
|
|
78
|
-
"@types/react-native": "0.70.
|
|
76
|
+
"@types/react": "~18.2.79",
|
|
77
|
+
"@types/react-native": "0.70.19",
|
|
79
78
|
"@typescript-eslint/eslint-plugin": "^5.60.0",
|
|
80
79
|
"@typescript-eslint/parser": "^5.60.0",
|
|
81
80
|
"commitlint": "^17.0.2",
|
|
@@ -88,12 +87,12 @@
|
|
|
88
87
|
"prettier": "^2.0.5",
|
|
89
88
|
"quicktype": "^16.0.43",
|
|
90
89
|
"react": "18.2.0",
|
|
91
|
-
"react-native": "0.
|
|
90
|
+
"react-native": "0.70.15",
|
|
92
91
|
"typedoc": "^0.24.4",
|
|
93
92
|
"typescript": "^4.9.5"
|
|
94
93
|
},
|
|
95
94
|
"resolutions": {
|
|
96
|
-
"@types/react": "
|
|
95
|
+
"@types/react": "18.2.79"
|
|
97
96
|
},
|
|
98
97
|
"peerDependencies": {
|
|
99
98
|
"react": "*",
|
|
@@ -18,10 +18,13 @@ Pod::Spec.new do |s|
|
|
|
18
18
|
|
|
19
19
|
s.dependency "React-Core"
|
|
20
20
|
|
|
21
|
+
podfile = Pod::Podfile.from_file(Pathname.new('native-bridge/iOS/Podfile'))
|
|
22
|
+
pod = podfile.dependencies.select { |pod| pod.name == "Bandyer" }
|
|
23
|
+
|
|
21
24
|
if defined?($KaleyraNoWebRTC)
|
|
22
|
-
s.dependency "Bandyer/Core",
|
|
25
|
+
s.dependency "Bandyer/Core", pod[0].requirement.to_s
|
|
23
26
|
else
|
|
24
|
-
s.dependency "Bandyer",
|
|
27
|
+
s.dependency "Bandyer", pod[0].requirement.to_s
|
|
25
28
|
end
|
|
26
29
|
|
|
27
30
|
# Don't install the dependencies when we run `pod install` in the old architecture.
|