@zoom/meetingsdk-react-native 6.4.10 → 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 +57 -52
- package/android/gradle/verification-metadata.xml +3769 -0
- package/android/gradle/wrapper/gradle-wrapper.properties +7 -0
- package/android/gradle.properties +4 -4
- package/android/gradlew +251 -0
- package/android/gradlew.bat +94 -0
- package/android/src/main/java/com/reactnativezoom/sdk/RNZoomSDKModule.java +15 -3
- package/android/versions.gradle +318 -0
- package/ios/RNZoomSDK.m +37 -9
- 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 +2 -2
- 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
|
@@ -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]
|
|
@@ -30,7 +31,7 @@ android {
|
|
|
30
31
|
compileSdkVersion getExtOrIntegerDefault('compileSdkVersion')
|
|
31
32
|
buildToolsVersion getExtOrDefault('buildToolsVersion')
|
|
32
33
|
defaultConfig {
|
|
33
|
-
minSdkVersion
|
|
34
|
+
minSdkVersion 28
|
|
34
35
|
targetSdkVersion getExtOrIntegerDefault('targetSdkVersion')
|
|
35
36
|
versionCode 1
|
|
36
37
|
versionName "1.0"
|
|
@@ -132,54 +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
|
-
implementation
|
|
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
|
-
|
|
184
|
-
implementation
|
|
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'
|
|
185
190
|
}
|