@zoom/meetingsdk-react-native 6.6.0 → 6.7.2
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 +56 -54
- package/android/gradle.properties +4 -4
- package/android/versions.gradle +318 -0
- package/ios/RNZoomSDK.m +2 -2
- package/meetingsdk-react-native.podspec +2 -2
- package/package.json +1 -1
package/android/build.gradle
CHANGED
|
@@ -9,7 +9,7 @@ buildscript {
|
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
dependencies {
|
|
12
|
-
classpath 'com.android.tools.build:gradle:
|
|
12
|
+
classpath 'com.android.tools.build:gradle:8.10.0'
|
|
13
13
|
// noinspection DifferentKotlinGradleVersion
|
|
14
14
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
15
15
|
}
|
|
@@ -17,6 +17,7 @@ buildscript {
|
|
|
17
17
|
|
|
18
18
|
apply plugin: 'com.android.library'
|
|
19
19
|
apply plugin: 'kotlin-android'
|
|
20
|
+
apply from: 'versions.gradle'
|
|
20
21
|
|
|
21
22
|
def getExtOrDefault(name) {
|
|
22
23
|
return rootProject.ext.has(name) ? rootProject.ext.get(name) : project.properties['ZoomMeetingSDK_' + name]
|
|
@@ -132,57 +133,58 @@ def kotlin_version = getExtOrDefault('kotlinVersion')
|
|
|
132
133
|
dependencies {
|
|
133
134
|
// noinspection GradleDynamicVersion
|
|
134
135
|
api 'com.facebook.react:react-android:+'
|
|
135
|
-
implementation
|
|
136
|
-
implementation
|
|
137
|
-
implementation
|
|
138
|
-
implementation
|
|
139
|
-
implementation
|
|
140
|
-
implementation
|
|
141
|
-
implementation
|
|
142
|
-
implementation
|
|
143
|
-
implementation
|
|
144
|
-
implementation
|
|
145
|
-
implementation
|
|
146
|
-
implementation
|
|
147
|
-
implementation
|
|
148
|
-
implementation
|
|
149
|
-
implementation
|
|
150
|
-
implementation
|
|
151
|
-
implementation
|
|
152
|
-
implementation
|
|
153
|
-
implementation
|
|
154
|
-
implementation
|
|
155
|
-
implementation
|
|
156
|
-
implementation
|
|
157
|
-
implementation
|
|
158
|
-
implementation
|
|
159
|
-
implementation
|
|
160
|
-
implementation
|
|
161
|
-
|
|
162
|
-
implementation
|
|
163
|
-
implementation
|
|
164
|
-
implementation
|
|
165
|
-
implementation
|
|
166
|
-
implementation
|
|
167
|
-
implementation
|
|
168
|
-
implementation
|
|
169
|
-
implementation
|
|
170
|
-
implementation
|
|
171
|
-
implementation
|
|
172
|
-
implementation
|
|
173
|
-
implementation
|
|
174
|
-
implementation
|
|
175
|
-
implementation
|
|
176
|
-
implementation
|
|
177
|
-
implementation
|
|
178
|
-
implementation
|
|
179
|
-
implementation
|
|
180
|
-
implementation
|
|
181
|
-
implementation
|
|
182
|
-
implementation
|
|
183
|
-
implementation
|
|
184
|
-
implementation
|
|
185
|
-
implementation
|
|
186
|
-
|
|
187
|
-
|
|
136
|
+
implementation libraries.securityCrypto
|
|
137
|
+
implementation libraries.cryptoTink
|
|
138
|
+
implementation libraries.exoplayerCore
|
|
139
|
+
implementation libraries.exoplayerUI
|
|
140
|
+
implementation libraries.swiperefreshlayout
|
|
141
|
+
implementation libraries.supportAppcompat
|
|
142
|
+
implementation libraries.constraintlayout
|
|
143
|
+
implementation libraries.supportDesign
|
|
144
|
+
implementation libraries.multidex
|
|
145
|
+
implementation libraries.gson
|
|
146
|
+
implementation libraries.glideAnnotations
|
|
147
|
+
implementation libraries.glideGlide
|
|
148
|
+
implementation libraries.recyclerview
|
|
149
|
+
implementation libraries.lottie
|
|
150
|
+
implementation libraries.supportWindow
|
|
151
|
+
implementation libraries.windowJava
|
|
152
|
+
implementation libraries.jetbrainskotlin
|
|
153
|
+
implementation libraries.kotlinStdlibJdk
|
|
154
|
+
implementation libraries.kotlinxCoroutinesAndroid
|
|
155
|
+
implementation libraries.kotlinxCoroutinesCore
|
|
156
|
+
implementation libraries.androidxCoreKtx
|
|
157
|
+
implementation libraries.androidxCore
|
|
158
|
+
implementation libraries.viewmodelKtx
|
|
159
|
+
implementation libraries.lifecycleKtx
|
|
160
|
+
implementation libraries.lifecycleService
|
|
161
|
+
implementation libraries.workerManager
|
|
162
|
+
implementation libraries.fragmentKtx
|
|
163
|
+
implementation libraries.scaleImageView
|
|
164
|
+
implementation libraries.splashScreenLib
|
|
165
|
+
implementation libraries.livedataKtx
|
|
166
|
+
implementation libraries.rxAndroid
|
|
167
|
+
implementation libraries.composeMaterial3
|
|
168
|
+
implementation libraries.composeMaterial3WindowSize
|
|
169
|
+
implementation libraries.composeUIToolingPreview
|
|
170
|
+
implementation libraries.composeConstraintlayout
|
|
171
|
+
implementation libraries.composeActivity
|
|
172
|
+
implementation libraries.composeLifecycle
|
|
173
|
+
implementation libraries.composeNavigation
|
|
174
|
+
implementation libraries.coil
|
|
175
|
+
implementation libraries.androidxWebkitKtx
|
|
176
|
+
implementation libraries.jetbrainsAnnotations
|
|
177
|
+
implementation libraries.kotlinxCoroutinesCoreJvm
|
|
178
|
+
implementation libraries.kotlinxCoroutinesSwing
|
|
179
|
+
implementation libraries.cameraXCore
|
|
180
|
+
implementation libraries.cameraXCamera2
|
|
181
|
+
implementation libraries.cameraXLifecycle
|
|
182
|
+
implementation libraries.cameraXView
|
|
183
|
+
implementation libraries.mlkitTextRecognition
|
|
184
|
+
implementation libraries.blueparrottsdk
|
|
185
|
+
implementation libraries.composeLifecycleViewmodel
|
|
186
|
+
implementation libraries.profileinstaller
|
|
187
|
+
implementation libraries.coilGif
|
|
188
|
+
|
|
189
|
+
implementation 'us.zoom.meetingsdk:zoomsdk:6.7.2'
|
|
188
190
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
ZoomMeetingSDK_kotlinVersion=2.
|
|
2
|
-
ZoomMeetingSDK_compileSdkVersion=
|
|
3
|
-
ZoomMeetingSDK_buildToolsVersion=
|
|
4
|
-
ZoomMeetingSDK_targetSdkVersion=
|
|
1
|
+
ZoomMeetingSDK_kotlinVersion=2.1.20
|
|
2
|
+
ZoomMeetingSDK_compileSdkVersion=36
|
|
3
|
+
ZoomMeetingSDK_buildToolsVersion=36.0.0
|
|
4
|
+
ZoomMeetingSDK_targetSdkVersion=36
|
|
@@ -0,0 +1,318 @@
|
|
|
1
|
+
// Shared version catalog referencing libs.versions.toml
|
|
2
|
+
ext.libs = [
|
|
3
|
+
// Core Android libraries
|
|
4
|
+
gsonVersion: '2.11.0',
|
|
5
|
+
glideVersion: '4.11.0',
|
|
6
|
+
lifecycleVersion: '2.9.1',
|
|
7
|
+
protobufJavaVersion: '4.28.2',
|
|
8
|
+
lottieVersion: '4.0.0',
|
|
9
|
+
exoplayer: '2.17.1',
|
|
10
|
+
materialVersion: '1.11.0',
|
|
11
|
+
windowVersion: '1.1.0',
|
|
12
|
+
fragmentVersion: '1.4.1',
|
|
13
|
+
fragmentXVersion: '1.4.1',
|
|
14
|
+
activityxVersion: '1.11.0',
|
|
15
|
+
activityKtxVersion: '1.11.0',
|
|
16
|
+
lifecycleCommonJavaVersion: '2.5.1',
|
|
17
|
+
|
|
18
|
+
// Compose versions
|
|
19
|
+
composeBomVersion: '2025.10.01',
|
|
20
|
+
composeConstraintLayoutVersion: '1.1.1',
|
|
21
|
+
composeNavigationVersion: '2.9.2',
|
|
22
|
+
composePagingVersion: '3.3.5',
|
|
23
|
+
composeActivityVersion: '1.11.0',
|
|
24
|
+
composeLifecycleVersion: '2.9.4',
|
|
25
|
+
composeSavedStateVersion: '1.3.3',
|
|
26
|
+
composeUIToolingVersion: '1.9.4',
|
|
27
|
+
composeUITextVersion: '1.9.4',
|
|
28
|
+
composeUIUnitVersion: '1.9.4',
|
|
29
|
+
composeFoundationVersion: '1.9.4',
|
|
30
|
+
composeAnimationVersion: '1.9.4',
|
|
31
|
+
composeRuntimeVersion: '1.9.4',
|
|
32
|
+
composeMaterialVersion: '1.9.4',
|
|
33
|
+
composeUIVersion: '1.9.4',
|
|
34
|
+
composeMaterial3Version: '1.5.0-alpha07', // From reference build.gradle GXR section
|
|
35
|
+
composeMediaVersion: '1.6.0',
|
|
36
|
+
composeProfileInstallerVersion: '1.4.0',
|
|
37
|
+
|
|
38
|
+
// Compose specific artifacts vars
|
|
39
|
+
composeMaterial3AndroidVersion: '1.5.0-alpha07',
|
|
40
|
+
composeMaterial3WindowSizeAndroidVersion: '1.5.0-alpha07',
|
|
41
|
+
composeSavedStateAndroidVersion: '1.3.0',
|
|
42
|
+
coilVersion: '2.3.0',
|
|
43
|
+
|
|
44
|
+
// Testing versions
|
|
45
|
+
testMonitorVersion: '1.6.1',
|
|
46
|
+
coroutinesTestVersion: '1.9.0',
|
|
47
|
+
coilComposeVersion: '2.3.0',
|
|
48
|
+
webkitVersion: '1.9.0',
|
|
49
|
+
savedstateVersion: '1.3.0',
|
|
50
|
+
emoji2Version: '1.4.0',
|
|
51
|
+
exifinterfaceVersion: '1.3.6',
|
|
52
|
+
lifecycleProcessVersion: '2.9.1',
|
|
53
|
+
concurrentFuturesVersion: '1.1.0',
|
|
54
|
+
constraintlayoutCoreVersion: '1.1.1',
|
|
55
|
+
playServicesBaseVersion: '18.5.0',
|
|
56
|
+
credentialsVersion: '1.2.2',
|
|
57
|
+
|
|
58
|
+
// Kotlin and coroutines
|
|
59
|
+
collectionVersion: '1.5.0',
|
|
60
|
+
kotlinxCoroutinesAndroidVersion: '1.9.0',
|
|
61
|
+
errorProneAnnotationsVersion: '2.3.4',
|
|
62
|
+
profileInstallerVersion: '1.4.0',
|
|
63
|
+
okioVersion: '3.9.0',
|
|
64
|
+
androidxCoreKtxVersion: '1.8.0',
|
|
65
|
+
androidxWebkitKtxVersion: '1.9.0',
|
|
66
|
+
rxandroidVersion: '3.0.2',
|
|
67
|
+
|
|
68
|
+
// Google services
|
|
69
|
+
playServiceBasementVersion: '18.4.0',
|
|
70
|
+
playServiceTaskVersion: '18.0.1',
|
|
71
|
+
|
|
72
|
+
// UI components
|
|
73
|
+
drawerlayoutVersion: '1.1.1',
|
|
74
|
+
customviewVersion: '1.1.0',
|
|
75
|
+
|
|
76
|
+
// Kotlin coroutines
|
|
77
|
+
kotlinxCoroutinesSwingVersion: '1.9.0',
|
|
78
|
+
kotlinxCoroutinesCoreJvmVersion: '1.9.0',
|
|
79
|
+
jetbrainAnnotationVersion: '23.0.0',
|
|
80
|
+
|
|
81
|
+
// Testing and tools
|
|
82
|
+
archCoreVersion: '2.2.0',
|
|
83
|
+
multidexVersion: '2.0.1',
|
|
84
|
+
scaleImageViewVersion: '3.10.0',
|
|
85
|
+
kotlinVersion: '2.2.20',
|
|
86
|
+
securityCryptoVersion: '1.1.0-alpha05',
|
|
87
|
+
cryptoTinkVersion: '1.7.0',
|
|
88
|
+
androidxCoreVersion: '1.13.0',
|
|
89
|
+
swiperefreshlayoutVersion: '1.1.0',
|
|
90
|
+
annotationVersion: '1.3.0',
|
|
91
|
+
annotationExperimentalVersion: '1.1.0',
|
|
92
|
+
listenablefutureVersion: '9999.0-empty-to-avoid-conflict-with-guava',
|
|
93
|
+
guavaVersion: '33.2.0-jre',
|
|
94
|
+
appcompatVersion: '1.6.1',
|
|
95
|
+
recyclerviewVersion: '1.2.1',
|
|
96
|
+
constraintlayoutVersion: '2.2.1',
|
|
97
|
+
vectordrawableVersion: '1.1.0',
|
|
98
|
+
startupVersion: '1.2.0-alpha02',
|
|
99
|
+
splashScreenVersion: '1.0.1',
|
|
100
|
+
workMangrVersion: '2.9.0',
|
|
101
|
+
emdkVersion: '9.1.1',
|
|
102
|
+
|
|
103
|
+
// Firebase and ML Kit
|
|
104
|
+
dataTransportApiVersion: '3.0.0',
|
|
105
|
+
dataTransportRuntimeVersion: '3.1.8',
|
|
106
|
+
firebaseEncodersVersion: '17.0.0',
|
|
107
|
+
androidxTrackingVersion: '1.0.0',
|
|
108
|
+
mlkitCommonVersion: '18.11.0',
|
|
109
|
+
mlkitTextRecognitionVersion: '16.0.1',
|
|
110
|
+
cameraXVersion: '1.4.1',
|
|
111
|
+
|
|
112
|
+
// Additional libraries
|
|
113
|
+
kotlinxAtomicfuVersion: '0.17.0',
|
|
114
|
+
blueparrottsdkVersion: '4.8.2',
|
|
115
|
+
nimbusdsVersion: '9.40',
|
|
116
|
+
browserVersion: '1.4.0',
|
|
117
|
+
viewBindingXVersion: '7.1.2',
|
|
118
|
+
coordinatorlayoutVersion: '1.1.0',
|
|
119
|
+
firebaseAnnotationVersion: '16.1.0',
|
|
120
|
+
playServiceFidoVersion: '21.1.0',
|
|
121
|
+
protobufLiteVersion: '4.28.2',
|
|
122
|
+
rxandroidForceVersion: '3.1.5',
|
|
123
|
+
reactiveStreamVersion: '1.0.4',
|
|
124
|
+
okhttpVersion: '4.12.0',
|
|
125
|
+
dataTransportBackendCctVersion: '3.1.8',
|
|
126
|
+
firebaseCommentsVersion: '17.0.1',
|
|
127
|
+
firebaseEncodersJsonVersion: '18.0.0',
|
|
128
|
+
apmReleaseVersion: '1.0.17',
|
|
129
|
+
apmDebugVersion: '1.0.21',
|
|
130
|
+
javapoetVersion: '1.13.0',
|
|
131
|
+
mediaVersion: '1.4.3',
|
|
132
|
+
supportWindowVersion: '1.1.0',
|
|
133
|
+
kotlinParcelizeVersion: '2.2.20',
|
|
134
|
+
coilGifVersion: '2.7.0',
|
|
135
|
+
]
|
|
136
|
+
|
|
137
|
+
// Library definitions with versions
|
|
138
|
+
ext.libraries = [
|
|
139
|
+
// Core Android libraries
|
|
140
|
+
swiperefreshlayout: "androidx.swiperefreshlayout:swiperefreshlayout:${libs.swiperefreshlayoutVersion}",
|
|
141
|
+
supportAnnotation: "androidx.annotation:annotation:${libs.annotationVersion}",
|
|
142
|
+
annotationExperimental: "androidx.annotation:annotation-experimental:${libs.annotationExperimentalVersion}",
|
|
143
|
+
supportAppcompat: "androidx.appcompat:appcompat:${libs.appcompatVersion}",
|
|
144
|
+
supportDesign: "com.google.android.material:material:${libs.materialVersion}",
|
|
145
|
+
recyclerview: "androidx.recyclerview:recyclerview:${libs.recyclerviewVersion}",
|
|
146
|
+
constraintlayout: "androidx.constraintlayout:constraintlayout:${libs.constraintlayoutVersion}",
|
|
147
|
+
drawerlayout: "androidx.drawerlayout:drawerlayout:${libs.drawerlayoutVersion}",
|
|
148
|
+
customview: "androidx.customview:customview:${libs.customviewVersion}",
|
|
149
|
+
constraintlayoutCore: "androidx.constraintlayout:constraintlayout-core:${libs.constraintlayoutCoreVersion}",
|
|
150
|
+
archCoreCommon: "androidx.arch.core:core-common:${libs.archCoreVersion}",
|
|
151
|
+
archCoreRuntime: "androidx.arch.core:core-runtime:${libs.archCoreVersion}",
|
|
152
|
+
listenablefuture: "com.google.guava:listenablefuture:${libs.listenablefutureVersion}",
|
|
153
|
+
guava: "com.google.guava:guava:${libs.guavaVersion}",
|
|
154
|
+
androidxCore: "androidx.core:core:${libs.androidxCoreVersion}",
|
|
155
|
+
securityCrypto: "androidx.security:security-crypto:${libs.securityCryptoVersion}",
|
|
156
|
+
cryptoTink: "com.google.crypto.tink:tink-android:${libs.cryptoTinkVersion}",
|
|
157
|
+
multidex: "androidx.multidex:multidex:${libs.multidexVersion}",
|
|
158
|
+
scaleImageView: "com.davemorrissey.labs:subsampling-scale-image-view:${libs.scaleImageViewVersion}",
|
|
159
|
+
gson: "com.google.code.gson:gson:${libs.gsonVersion}",
|
|
160
|
+
|
|
161
|
+
// Firebase and messaging
|
|
162
|
+
workerManager: "androidx.work:work-runtime:${libs.workMangrVersion}",
|
|
163
|
+
lifecycleService: "androidx.lifecycle:lifecycle-service:${libs.lifecycleVersion}",
|
|
164
|
+
|
|
165
|
+
// Google Play Services
|
|
166
|
+
playServiceBasement: "com.google.android.gms:play-services-basement:${libs.playServiceBasementVersion}",
|
|
167
|
+
playServiceTask: "com.google.android.gms:play-services-tasks:${libs.playServiceTaskVersion}",
|
|
168
|
+
|
|
169
|
+
// Glide
|
|
170
|
+
glideAnnotations: "com.github.bumptech.glide:annotations:${libs.glideVersion}",
|
|
171
|
+
glideGlide: "com.github.bumptech.glide:glide:${libs.glideVersion}",
|
|
172
|
+
|
|
173
|
+
// RxJava
|
|
174
|
+
rxAndroid: "io.reactivex.rxjava3:rxandroid:${libs.rxandroidVersion}",
|
|
175
|
+
|
|
176
|
+
// AndroidX libraries
|
|
177
|
+
androidxCoreKtx: "androidx.core:core-ktx:${libs.androidxCoreKtxVersion}",
|
|
178
|
+
androidxWebkitKtx: "androidx.webkit:webkit:${libs.androidxWebkitKtxVersion}",
|
|
179
|
+
fragmentx: "androidx.fragment:fragment:${libs.fragmentXVersion}",
|
|
180
|
+
activityx: "androidx.activity:activity:${libs.activityxVersion}",
|
|
181
|
+
activityKtx: "androidx.activity:activity-ktx:${libs.activityKtxVersion}",
|
|
182
|
+
collection: "androidx.collection:collection:${libs.collectionVersion}",
|
|
183
|
+
collectionKtx: "androidx.collection:collection-ktx:${libs.collectionVersion}",
|
|
184
|
+
fragmentKtx: "androidx.fragment:fragment-ktx:${libs.fragmentVersion}",
|
|
185
|
+
|
|
186
|
+
// Lifecycle libraries
|
|
187
|
+
viewmodelKtx: "androidx.lifecycle:lifecycle-viewmodel-ktx:${libs.lifecycleVersion}",
|
|
188
|
+
viewmodel: "androidx.lifecycle:lifecycle-viewmodel:${libs.lifecycleVersion}",
|
|
189
|
+
lifecycleKtx: "androidx.lifecycle:lifecycle-runtime-ktx:${libs.lifecycleVersion}",
|
|
190
|
+
livedataKtx: "androidx.lifecycle:lifecycle-livedata-ktx:${libs.lifecycleVersion}",
|
|
191
|
+
livedataCoreKtx: "androidx.lifecycle:lifecycle-livedata-core-ktx:${libs.lifecycleVersion}",
|
|
192
|
+
lifecycle: "androidx.lifecycle:lifecycle-runtime:${libs.lifecycleVersion}",
|
|
193
|
+
livedataCore: "androidx.lifecycle:lifecycle-livedata-core:${libs.lifecycleVersion}",
|
|
194
|
+
livedata: "androidx.lifecycle:lifecycle-livedata:${libs.lifecycleVersion}",
|
|
195
|
+
lifecycleCommon: "androidx.lifecycle:lifecycle-common:${libs.lifecycleVersion}",
|
|
196
|
+
lifecycleViewModelSavedState: "androidx.lifecycle:lifecycle-viewmodel-savedstate:${libs.lifecycleVersion}",
|
|
197
|
+
lifecycleCommonJava: "androidx.lifecycle:lifecycle-common-java8:${libs.lifecycleCommonJavaVersion}",
|
|
198
|
+
|
|
199
|
+
// Play Services
|
|
200
|
+
playServicesBase: "com.google.android.gms:play-services-base:${libs.playServicesBaseVersion}",
|
|
201
|
+
|
|
202
|
+
// Kotlin coroutines
|
|
203
|
+
kotlinxCoroutinesAndroid: "org.jetbrains.kotlinx:kotlinx-coroutines-android:${libs.kotlinxCoroutinesAndroidVersion}",
|
|
204
|
+
kotlinxCoroutinesCore: "org.jetbrains.kotlinx:kotlinx-coroutines-core:${libs.kotlinxCoroutinesAndroidVersion}",
|
|
205
|
+
kotlinxCoroutinesSwing: "org.jetbrains.kotlinx:kotlinx-coroutines-swing:${libs.kotlinxCoroutinesSwingVersion}",
|
|
206
|
+
kotlinxCoroutinesCoreJvm: "org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:${libs.kotlinxCoroutinesCoreJvmVersion}",
|
|
207
|
+
jetbrainsAnnotations: "org.jetbrains:annotations:${libs.jetbrainAnnotationVersion}",
|
|
208
|
+
|
|
209
|
+
// Kotlin stdlib
|
|
210
|
+
jetbrainskotlin: "org.jetbrains.kotlin:kotlin-stdlib:${libs.kotlinVersion}",
|
|
211
|
+
kotlinStdlibCommon: "org.jetbrains.kotlin:kotlin-stdlib-common:${libs.kotlinVersion}",
|
|
212
|
+
kotlinStdlibJdk: "org.jetbrains.kotlin:kotlin-stdlib-jdk8:${libs.kotlinVersion}",
|
|
213
|
+
kotlinStdlibJdk7: "org.jetbrains.kotlin:kotlin-stdlib-jdk7:${libs.kotlinVersion}",
|
|
214
|
+
|
|
215
|
+
// Other libraries
|
|
216
|
+
profileinstaller: "androidx.profileinstaller:profileinstaller:${libs.profileInstallerVersion}",
|
|
217
|
+
errorProneAnnotations: "com.google.errorprone:error_prone_annotations:${libs.errorProneAnnotationsVersion}",
|
|
218
|
+
okio: "com.squareup.okio:okio:${libs.okioVersion}",
|
|
219
|
+
vectordrawableAnimated: "androidx.vectordrawable:vectordrawable-animated:${libs.vectordrawableVersion}",
|
|
220
|
+
vectordrawable: "androidx.vectordrawable:vectordrawable:${libs.vectordrawableVersion}",
|
|
221
|
+
protobufJava: "com.google.protobuf:protobuf-java:${libs.protobufJavaVersion}",
|
|
222
|
+
lottie: "com.airbnb.android:lottie:${libs.lottieVersion}",
|
|
223
|
+
exoplayerCore: "com.google.android.exoplayer:exoplayer-core:${libs.exoplayer}",
|
|
224
|
+
exoplayerUI: "com.google.android.exoplayer:exoplayer-ui:${libs.exoplayer}",
|
|
225
|
+
supportWindow: "androidx.window:window:${libs.windowVersion}",
|
|
226
|
+
windowJava: "androidx.window:window-java:${libs.windowVersion}",
|
|
227
|
+
startup: "androidx.startup:startup-runtime:${libs.startupVersion}",
|
|
228
|
+
|
|
229
|
+
// Compose libraries
|
|
230
|
+
composeBom: "androidx.compose:compose-bom:${libs.composeBomVersion}",
|
|
231
|
+
coil: "io.coil-kt:coil-compose:${libs.coilVersion}",
|
|
232
|
+
composeConstraintlayout: "androidx.constraintlayout:constraintlayout-compose:${libs.composeConstraintLayoutVersion}",
|
|
233
|
+
composeActivity: "androidx.activity:activity-compose:${libs.composeActivityVersion}",
|
|
234
|
+
composeLifecycle: "androidx.lifecycle:lifecycle-runtime-compose:${libs.composeLifecycleVersion}",
|
|
235
|
+
composeLifecycleViewmodel: "androidx.lifecycle:lifecycle-viewmodel-compose:${libs.composeLifecycleVersion}",
|
|
236
|
+
composeSavedState: "androidx.savedstate:savedstate-compose:${libs.composeSavedStateVersion}",
|
|
237
|
+
composeSavedStateAndroid: "androidx.savedstate:savedstate-compose:${libs.composeSavedStateAndroidVersion}",
|
|
238
|
+
composeMaterial: "androidx.compose.material:material:${libs.composeMaterialVersion}",
|
|
239
|
+
composeMaterialRipple: "androidx.compose.material:material-ripple:${libs.composeMaterialVersion}",
|
|
240
|
+
composeMaterial3: "androidx.compose.material3:material3:${libs.composeMaterial3Version}",
|
|
241
|
+
composeMaterial3WindowSize: "androidx.compose.material3:material3-window-size-class:${libs.composeMaterial3Version}",
|
|
242
|
+
// Android specific artifacts
|
|
243
|
+
composeMaterial3Android: "androidx.compose.material3:material3-android:${libs.composeMaterial3AndroidVersion}",
|
|
244
|
+
composeMaterial3WindowSizeAndroid: "androidx.compose.material3:material3-window-size-class-android:${libs.composeMaterial3WindowSizeAndroidVersion}",
|
|
245
|
+
|
|
246
|
+
composeAnimation: "androidx.compose.animation:animation:${libs.composeAnimationVersion}",
|
|
247
|
+
composeAnimationCore: "androidx.compose.animation:animation-core:${libs.composeAnimationVersion}",
|
|
248
|
+
composeNavigation: "androidx.navigation:navigation-compose:${libs.composeNavigationVersion}",
|
|
249
|
+
composePaging: "androidx.paging:paging-compose:${libs.composePagingVersion}",
|
|
250
|
+
composeRuntime: "androidx.compose.runtime:runtime:${libs.composeRuntimeVersion}",
|
|
251
|
+
composeRuntimeSaveable: "androidx.compose.runtime:runtime-saveable:${libs.composeRuntimeVersion}",
|
|
252
|
+
composeUI: "androidx.compose.ui:ui:${libs.composeUIVersion}",
|
|
253
|
+
composeUIViewBinding: "androidx.compose.ui:ui-viewbinding:${libs.composeUIVersion}",
|
|
254
|
+
composeUIGeometry: "androidx.compose.ui:ui-geometry:${libs.composeUIVersion}",
|
|
255
|
+
composeUIGraphics: "androidx.compose.ui:ui-graphics:${libs.composeUIVersion}",
|
|
256
|
+
composeUIText: "androidx.compose.ui:ui-text:${libs.composeUITextVersion}",
|
|
257
|
+
composeUIUnit: "androidx.compose.ui:ui-unit:${libs.composeUIUnitVersion}",
|
|
258
|
+
composeUIUtil: "androidx.compose.ui:ui-util:${libs.composeUIVersion}",
|
|
259
|
+
composeUIToolingPreview: "androidx.compose.ui:ui-tooling-preview:${libs.composeUIToolingVersion}",
|
|
260
|
+
composeUITooling: "androidx.compose.ui:ui-tooling:${libs.composeUIToolingVersion}",
|
|
261
|
+
composeUITestManifest: "androidx.compose.ui:ui-test-manifest:${libs.composeUIVersion}",
|
|
262
|
+
composeUITestJunit4: "androidx.compose.ui:ui-test-junit4:${libs.composeUIVersion}",
|
|
263
|
+
composeFoundation: "androidx.compose.foundation:foundation:${libs.composeFoundationVersion}",
|
|
264
|
+
composeFoundationLayout: "androidx.compose.foundation:foundation-layout:${libs.composeFoundationVersion}",
|
|
265
|
+
savedstateKtx: "androidx.savedstate:savedstate-ktx:${libs.savedstateVersion}",
|
|
266
|
+
savedstate: "androidx.savedstate:savedstate:${libs.savedstateVersion}",
|
|
267
|
+
emoji2: "androidx.emoji2:emoji2:${libs.emoji2Version}",
|
|
268
|
+
emoji2ViewsHelper: "androidx.emoji2:emoji2-views-helper:${libs.emoji2Version}",
|
|
269
|
+
exifinterface: "androidx.exifinterface:exifinterface:${libs.exifinterfaceVersion}",
|
|
270
|
+
lifecycleProcess: "androidx.lifecycle:lifecycle-process:${libs.lifecycleProcessVersion}",
|
|
271
|
+
concurrentFutures: "androidx.concurrent:concurrent-futures:${libs.concurrentFuturesVersion}",
|
|
272
|
+
splashScreenLib: "androidx.core:core-splashscreen:${libs.splashScreenVersion}",
|
|
273
|
+
|
|
274
|
+
// Data transport and Firebase
|
|
275
|
+
dataTransportApi: "com.google.android.datatransport:transport-api:${libs.dataTransportApiVersion}",
|
|
276
|
+
dataTrasnsportRuntime: "com.google.android.datatransport:transport-runtime:${libs.dataTransportRuntimeVersion}",
|
|
277
|
+
firebaseEncoders: "com.google.firebase:firebase-encoders:${libs.firebaseEncodersVersion}",
|
|
278
|
+
androidxTracing: "androidx.tracing:tracing:${libs.androidxTrackingVersion}",
|
|
279
|
+
mlkitCommon: "com.google.mlkit:common:${libs.mlkitCommonVersion}",
|
|
280
|
+
mlkitTextRecognition: "com.google.mlkit:text-recognition:${libs.mlkitTextRecognitionVersion}",
|
|
281
|
+
|
|
282
|
+
// CameraX
|
|
283
|
+
cameraXCore: "androidx.camera:camera-core:${libs.cameraXVersion}",
|
|
284
|
+
cameraXCamera2: "androidx.camera:camera-camera2:${libs.cameraXVersion}",
|
|
285
|
+
cameraXLifecycle: "androidx.camera:camera-lifecycle:${libs.cameraXVersion}",
|
|
286
|
+
cameraXView: "androidx.camera:camera-view:${libs.cameraXVersion}",
|
|
287
|
+
kotlinxAtomicfu: "org.jetbrains.kotlinx:atomicfu:${libs.kotlinxAtomicfuVersion}",
|
|
288
|
+
emdk: "com.symbol:emdk:${libs.emdkVersion}",
|
|
289
|
+
blueparrottsdk: "com.blueparrott:blueparrottsdk:${libs.blueparrottsdkVersion}",
|
|
290
|
+
nimbusds: "com.nimbusds:nimbus-jose-jwt:${libs.nimbusdsVersion}",
|
|
291
|
+
browser: "androidx.browser:browser:${libs.browserVersion}",
|
|
292
|
+
viewBindingX: "androidx.databinding:viewbinding:${libs.viewBindingXVersion}",
|
|
293
|
+
coordinatorlayout: "androidx.coordinatorlayout:coordinatorlayout:${libs.coordinatorlayoutVersion}",
|
|
294
|
+
firebaseAnnotation: "com.google.firebase:firebase-annotations:${libs.firebaseAnnotationVersion}",
|
|
295
|
+
playServiceFido: "com.google.android.gms:play-services-fido:${libs.playServiceFidoVersion}",
|
|
296
|
+
protobufJavalite: "com.google.protobuf:protobuf-javalite:${libs.protobufLiteVersion}",
|
|
297
|
+
rxAndroidForce: "io.reactivex.rxjava3:rxjava:${libs.rxandroidForceVersion}",
|
|
298
|
+
reactiveStream: "org.reactivestreams:reactive-streams:${libs.reactiveStreamVersion}",
|
|
299
|
+
okhttp: "com.squareup.okhttp3:okhttp:${libs.okhttpVersion}",
|
|
300
|
+
dataTrasnsportBackendCct: "com.google.android.datatransport:transport-backend-cct:${libs.dataTransportBackendCctVersion}",
|
|
301
|
+
firebaseComponenets: "com.google.firebase:firebase-components:${libs.firebaseCommentsVersion}",
|
|
302
|
+
firebaseEncodersJson: "com.google.firebase:firebase-encoders-json:${libs.firebaseEncodersJsonVersion}",
|
|
303
|
+
apmCommon: "us.zoom.android.apm:common:${libs.apmDebugVersion}",
|
|
304
|
+
apmApis: "us.zoom.android.apm:apis:${libs.apmReleaseVersion}",
|
|
305
|
+
javapoet: "com.squareup:javapoet:${libs.javapoetVersion}",
|
|
306
|
+
media: "androidx.media:media:${libs.mediaVersion}",
|
|
307
|
+
kotlinParcelize: "org.jetbrains.kotlin:kotlin-parcelize-runtime:${libs.kotlinParcelizeVersion}",
|
|
308
|
+
composeUITest: "androidx.compose.ui:ui-test:${libs.composeUITestVersion}",
|
|
309
|
+
composeUITooling: "androidx.compose.ui:ui-tooling:${libs.composeUIToolingVersion}",
|
|
310
|
+
coilGif: "io.coil-kt:coil-gif:${libs.coilGifVersion}",
|
|
311
|
+
credentials: "androidx.credentials:credentials:${libs.credentialsVersion}",
|
|
312
|
+
credentialsAuth: "androidx.credentials:credentials-play-services-auth:${libs.credentialsVersion}",
|
|
313
|
+
|
|
314
|
+
// Test libs for conflict resolution
|
|
315
|
+
testMonitor: "androidx.test:monitor:${libs.testMonitorVersion}",
|
|
316
|
+
coroutinesTest: "org.jetbrains.kotlinx:kotlinx-coroutines-test:${libs.coroutinesTestVersion}",
|
|
317
|
+
coroutinesTestJvm: "org.jetbrains.kotlinx:kotlinx-coroutines-test-jvm:${libs.coroutinesTestVersion}",
|
|
318
|
+
]
|
package/ios/RNZoomSDK.m
CHANGED
|
@@ -27,13 +27,13 @@ RCT_REMAP_METHOD(initSDK,
|
|
|
27
27
|
initParams.enableLog = [[config objectForKey:@"enableLog"] boolValue];
|
|
28
28
|
initParams.wrapperType = 2;
|
|
29
29
|
if ([config objectForKey:@"bundleResPath"]) {
|
|
30
|
-
initParams.
|
|
30
|
+
initParams.bundleResPath = [config valueForKey:@"bundleResPath"];
|
|
31
31
|
}
|
|
32
32
|
if ([config objectForKey:@"appGroupId"]) {
|
|
33
33
|
initParams.appGroupId = [config valueForKey:@"appGroupId"];
|
|
34
34
|
}
|
|
35
35
|
if ([config objectForKey:@"replaykitBundleIdentifier"]) {
|
|
36
|
-
initParams.
|
|
36
|
+
initParams.replaykitBundleIdentifier = [config valueForKey:@"replaykitBundleIdentifier"];
|
|
37
37
|
}
|
|
38
38
|
|
|
39
39
|
BOOL sdkInitRes = [[MobileRTC sharedRTC] initialize:initParams];
|
|
@@ -16,8 +16,8 @@ Pod::Spec.new do |s|
|
|
|
16
16
|
s.source_files = "ios/**/*.{h,m,mm}"
|
|
17
17
|
s.dependency "React-Core"
|
|
18
18
|
|
|
19
|
-
s.dependency "ZoomMeetingSDK", '6.
|
|
19
|
+
s.dependency "ZoomMeetingSDK", '6.7.2'
|
|
20
20
|
|
|
21
|
-
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386
|
|
21
|
+
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }
|
|
22
22
|
s.preserve_paths = ['MobileRTC.xcframework/**/*', 'zoomcml.xcframework/**/*']
|
|
23
23
|
end
|