@zoom/meetingsdk-react-native 6.2.10 → 6.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 +36 -31
- package/android/gradle/verification-metadata.xml +3769 -0
- package/android/gradle/wrapper/gradle-wrapper.properties +7 -0
- package/android/gradle.properties +3 -3
- package/android/gradlew +251 -0
- package/android/gradlew.bat +94 -0
- package/android/src/main/java/com/reactnativezoom/sdk/RNZoomSDKModule.java +15 -3
- package/ios/RNZoomSDK.m +35 -7
- package/lib/commonjs/Context.js +2 -1
- package/lib/commonjs/Context.js.map +1 -1
- package/lib/commonjs/hooks/useSDKHandler.js +5 -1
- package/lib/commonjs/hooks/useSDKHandler.js.map +1 -1
- package/lib/commonjs/native/ZoomSDK.js +5 -4
- package/lib/commonjs/native/ZoomSDK.js.map +1 -1
- package/lib/commonjs/utils/validation.js +8 -1
- package/lib/commonjs/utils/validation.js.map +1 -1
- package/lib/module/Context.js +2 -1
- package/lib/module/Context.js.map +1 -1
- package/lib/module/hooks/useSDKHandler.js +5 -1
- package/lib/module/hooks/useSDKHandler.js.map +1 -1
- package/lib/module/native/ZoomSDK.js +6 -5
- package/lib/module/native/ZoomSDK.js.map +1 -1
- package/lib/module/utils/validation.js +6 -0
- package/lib/module/utils/validation.js.map +1 -1
- package/lib/typescript/Context.d.ts +1 -0
- package/lib/typescript/native/ZoomSDK.d.ts +2 -1
- package/lib/typescript/utils/validation.d.ts +1 -0
- package/meetingsdk-react-native.podspec +5 -1
- package/package.json +2 -9
- package/src/Context.ts +2 -0
- package/src/hooks/useSDKHandler.ts +5 -0
- package/src/native/ZoomSDK.ts +8 -6
- package/src/utils/validation.ts +24 -0
package/android/build.gradle
CHANGED
|
@@ -30,7 +30,7 @@ android {
|
|
|
30
30
|
compileSdkVersion getExtOrIntegerDefault('compileSdkVersion')
|
|
31
31
|
buildToolsVersion getExtOrDefault('buildToolsVersion')
|
|
32
32
|
defaultConfig {
|
|
33
|
-
minSdkVersion
|
|
33
|
+
minSdkVersion 28
|
|
34
34
|
targetSdkVersion getExtOrIntegerDefault('targetSdkVersion')
|
|
35
35
|
versionCode 1
|
|
36
36
|
versionName "1.0"
|
|
@@ -38,6 +38,10 @@ android {
|
|
|
38
38
|
|
|
39
39
|
}
|
|
40
40
|
|
|
41
|
+
viewBinding {
|
|
42
|
+
enabled = true
|
|
43
|
+
}
|
|
44
|
+
|
|
41
45
|
buildTypes {
|
|
42
46
|
release {
|
|
43
47
|
minifyEnabled false
|
|
@@ -128,56 +132,57 @@ def kotlin_version = getExtOrDefault('kotlinVersion')
|
|
|
128
132
|
dependencies {
|
|
129
133
|
// noinspection GradleDynamicVersion
|
|
130
134
|
api 'com.facebook.react:react-android:+'
|
|
131
|
-
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
132
|
-
|
|
133
135
|
implementation "androidx.security:security-crypto:1.1.0-alpha05"
|
|
134
136
|
implementation "com.google.crypto.tink:tink-android:1.7.0"
|
|
135
137
|
implementation "com.google.android.exoplayer:exoplayer-core:2.17.1"
|
|
136
138
|
implementation "com.google.android.exoplayer:exoplayer-ui:2.17.1"
|
|
137
139
|
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
|
|
138
|
-
|
|
139
|
-
implementation "androidx.appcompat:appcompat:1.3.1"
|
|
140
|
+
implementation "androidx.appcompat:appcompat:1.6.1"
|
|
140
141
|
implementation "androidx.constraintlayout:constraintlayout:2.1.0"
|
|
141
|
-
implementation "com.google.android.material:material:1.
|
|
142
|
-
implementation "com.google.android.flexbox:flexbox:3.0.0"
|
|
142
|
+
implementation "com.google.android.material:material:1.11.0"
|
|
143
143
|
implementation "androidx.multidex:multidex:2.0.1"
|
|
144
|
-
implementation "com.google.code.gson:gson:2.
|
|
144
|
+
implementation "com.google.code.gson:gson:2.11.0"
|
|
145
145
|
implementation "com.github.bumptech.glide:annotations:4.11.0"
|
|
146
146
|
implementation "com.github.bumptech.glide:glide:4.11.0"
|
|
147
|
-
implementation "org.greenrobot:eventbus:3.1.1"
|
|
148
|
-
|
|
149
147
|
implementation "androidx.recyclerview:recyclerview:1.2.1"
|
|
150
148
|
implementation "com.airbnb.android:lottie:4.0.0"
|
|
151
|
-
|
|
152
|
-
implementation "androidx.window:window:1.
|
|
153
|
-
|
|
154
|
-
implementation "
|
|
155
|
-
|
|
156
|
-
implementation "org.jetbrains.kotlin:kotlin-stdlib:1.8.20"
|
|
157
|
-
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.20"
|
|
158
|
-
|
|
149
|
+
implementation "androidx.window:window:1.1.0"
|
|
150
|
+
implementation "androidx.window:window-java:1.1.0"
|
|
151
|
+
implementation "org.jetbrains.kotlin:kotlin-stdlib:1.7.20"
|
|
152
|
+
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.7.20"
|
|
159
153
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.2"
|
|
160
154
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2"
|
|
161
155
|
implementation "androidx.core:core-ktx:1.8.0"
|
|
162
|
-
implementation "androidx.
|
|
163
|
-
implementation "androidx.lifecycle:lifecycle-
|
|
156
|
+
implementation "androidx.core:core:1.13.0"
|
|
157
|
+
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2"
|
|
158
|
+
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.6.2"
|
|
159
|
+
implementation "androidx.lifecycle:lifecycle-service:2.6.2"
|
|
160
|
+
implementation "androidx.work:work-runtime:2.9.0"
|
|
164
161
|
|
|
165
162
|
implementation "androidx.fragment:fragment-ktx:1.4.1"
|
|
166
|
-
implementation "io.reactivex.rxjava2:rxandroid:2.1.1"
|
|
167
|
-
implementation "org.greenrobot:eventbus:3.1.1"
|
|
168
163
|
implementation "com.davemorrissey.labs:subsampling-scale-image-view:3.10.0"
|
|
169
164
|
implementation "androidx.core:core-splashscreen:1.0.1"
|
|
170
|
-
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.6.
|
|
171
|
-
implementation "androidx.databinding:viewbinding:7.1.2"
|
|
165
|
+
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.6.2"
|
|
172
166
|
implementation "io.reactivex.rxjava3:rxandroid:3.0.2"
|
|
173
|
-
|
|
174
|
-
implementation "androidx.compose.material3:material3:1.
|
|
175
|
-
implementation "androidx.compose.ui:ui-tooling-preview:1.
|
|
167
|
+
implementation "androidx.compose.material3:material3:1.2.1"
|
|
168
|
+
implementation "androidx.compose.material3:material3-window-size-class:1.2.1"
|
|
169
|
+
implementation "androidx.compose.ui:ui-tooling-preview:1.6.0"
|
|
176
170
|
implementation "androidx.constraintlayout:constraintlayout-compose:1.0.1"
|
|
177
171
|
implementation "androidx.activity:activity-compose:1.6.1"
|
|
178
|
-
implementation "androidx.lifecycle:lifecycle-runtime-compose:2.6.
|
|
179
|
-
implementation "androidx.navigation:navigation-compose:2.
|
|
172
|
+
implementation "androidx.lifecycle:lifecycle-runtime-compose:2.6.2"
|
|
173
|
+
implementation "androidx.navigation:navigation-compose:2.7.7"
|
|
180
174
|
implementation "io.coil-kt:coil-compose:2.3.0"
|
|
181
|
-
|
|
182
|
-
implementation
|
|
175
|
+
implementation "androidx.webkit:webkit:1.9.0"
|
|
176
|
+
implementation "org.jetbrains:annotations:23.0.0"
|
|
177
|
+
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.1"
|
|
178
|
+
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-swing:1.7.1"
|
|
179
|
+
implementation "androidx.camera:camera-core:1.4.1"
|
|
180
|
+
implementation "androidx.camera:camera-camera2:1.4.1"
|
|
181
|
+
implementation "androidx.camera:camera-lifecycle:1.4.1"
|
|
182
|
+
implementation "androidx.camera:camera-lifecycle:1.4.1"
|
|
183
|
+
implementation "androidx.camera:camera-view:1.4.1"
|
|
184
|
+
implementation "com.google.mlkit:text-recognition:16.0.1"
|
|
185
|
+
implementation "com.blueparrott:blueparrottsdk:4.8.2"
|
|
186
|
+
|
|
187
|
+
implementation 'us.zoom.meetingsdk:zoomsdk:6.6.0'
|
|
183
188
|
}
|