react-native-hyperkyc-sdk 0.3.4-alpha01 → 0.3.4-alpha02
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.
|
@@ -3,6 +3,7 @@ package com.reactnativehyperkycsdk;
|
|
|
3
3
|
|
|
4
4
|
import android.app.Activity;
|
|
5
5
|
import android.content.Intent;
|
|
6
|
+
import android.util.Log;
|
|
6
7
|
|
|
7
8
|
|
|
8
9
|
|
|
@@ -151,6 +152,7 @@ public class HyperkycSdkModule extends ReactContextBaseJavaModule implements Act
|
|
|
151
152
|
while(iterator.hasNextKey()){
|
|
152
153
|
String key = iterator.nextKey();
|
|
153
154
|
String value = inputs.getString(key);
|
|
155
|
+
Log.e("TAG", key + "---" + value);
|
|
154
156
|
inputsMap.put(key, value);
|
|
155
157
|
}
|
|
156
158
|
|
package/ios/HyperkycSdk.swift
CHANGED
|
@@ -34,6 +34,7 @@ class Hyperkyc: NSObject {
|
|
|
34
34
|
if(appKey != nil && appId != nil){
|
|
35
35
|
let hyperKYCConfig = HyperKycConfig(appId: appId!, appKey: appKey!, workflowId: workflowId!, transactionId: transactionId!)
|
|
36
36
|
if let inputs = inputs{
|
|
37
|
+
print(inputs)
|
|
37
38
|
hyperKYCConfig.setInputs(inputs: inputs)
|
|
38
39
|
}
|
|
39
40
|
|
|
Binary file
|