react-native-hyperkyc-sdk 3.3.0 → 3.3.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/build.gradle
CHANGED
|
@@ -56,7 +56,7 @@ repositories {
|
|
|
56
56
|
dependencies {
|
|
57
57
|
//noinspection GradleDynamicVersion
|
|
58
58
|
implementation "com.facebook.react:react-native:+" // From node_modules
|
|
59
|
-
implementation('co.hyperverge:hyperkyc:3.3.
|
|
59
|
+
implementation('co.hyperverge:hyperkyc:3.3.1@aar', {
|
|
60
60
|
transitive = true
|
|
61
61
|
exclude group: 'co.hyperverge', module: 'hyperdocdetect'
|
|
62
62
|
exclude group: 'co.hyperverge', module: 'hypersnap-pdf'
|
|
@@ -183,7 +183,7 @@ public class HyperkycSdkModule extends ReactContextBaseJavaModule {
|
|
|
183
183
|
String uniqueId = kycConfig.hasKey("uniqueId") ? kycConfig.getString("uniqueId") : null;
|
|
184
184
|
String themeMode = kycConfig.hasKey("themeMode") ? kycConfig.getString("themeMode") : null;
|
|
185
185
|
Map<String, String> metadata = new HashMap<>();
|
|
186
|
-
metadata.put("sdk-version", "3.3.
|
|
186
|
+
metadata.put("sdk-version", "3.3.1");
|
|
187
187
|
metadata.put("sdk-type", "React Native");
|
|
188
188
|
if (accessToken == null) {
|
|
189
189
|
assert appId != null;
|
package/ios/HyperkycSdk.swift
CHANGED
|
@@ -46,7 +46,7 @@ class Hyperkyc: RCTEventEmitter {
|
|
|
46
46
|
let uniqueId = _config["uniqueId"] as? String
|
|
47
47
|
let themeMode = _config["themeMode"] as? String
|
|
48
48
|
let metadata: [String: String] = [
|
|
49
|
-
"sdk-version": "3.3.
|
|
49
|
+
"sdk-version": "3.3.1",
|
|
50
50
|
"sdk-type": "React Native"
|
|
51
51
|
]
|
|
52
52
|
|