@finos_sdk/sdk-ekyc 0.0.35 → 0.0.37
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 +1 -1
- package/android/settings.gradle +1 -1
- package/android/src/main/AndroidManifest.xml +9 -1
- package/android/src/main/build.gradle +25 -18
- package/android/src/main/java/{com/sdkekycrn → finos/sdk/ekyc}/EKYCModule.kt +81 -13
- package/android/src/main/java/finos/sdk/ekyc/EKYCPackage.kt +38 -0
- package/dist/EKYCModule.d.ts +1 -1
- package/dist/EKYCModule.js +1 -1
- package/package.json +1 -1
- package/android/src/main/build/generated/source/buildConfig/debug/com/sdkekycrn/BuildConfig.java +0 -10
- package/android/src/main/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml +0 -7
- package/android/src/main/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json +0 -18
- package/android/src/main/build/intermediates/aar_main_jar/debug/syncDebugLibJars/classes.jar +0 -0
- package/android/src/main/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties +0 -6
- package/android/src/main/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json +0 -1
- package/android/src/main/build/intermediates/annotations_typedef_file/debug/extractDebugAnnotations/typedefs.txt +0 -0
- package/android/src/main/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar +0 -0
- package/android/src/main/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt +0 -0
- package/android/src/main/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties +0 -1
- package/android/src/main/build/intermediates/incremental/debug/packageDebugResources/merger.xml +0 -2
- package/android/src/main/build/intermediates/incremental/debug-mergeJavaRes/merge-state +0 -0
- package/android/src/main/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml +0 -2
- package/android/src/main/build/intermediates/incremental/mergeDebugShaders/merger.xml +0 -2
- package/android/src/main/build/intermediates/incremental/packageDebugAssets/merger.xml +0 -2
- package/android/src/main/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/sdkekycrn/BuildConfig.class +0 -0
- package/android/src/main/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt +0 -2
- package/android/src/main/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt +0 -7
- package/android/src/main/build/intermediates/merged_java_res/debug/mergeDebugJavaResource/feature-main.jar +0 -0
- package/android/src/main/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml +0 -7
- package/android/src/main/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt +0 -1
- package/android/src/main/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt +0 -1
- package/android/src/main/build/outputs/aar/main-debug.aar +0 -0
- package/android/src/main/build/outputs/logs/manifest-merger-debug-report.txt +0 -16
- package/android/src/main/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin +0 -0
- package/android/src/main/java/com/sdkekycrn/EKYCPackage.kt +0 -21
package/android/build.gradle
CHANGED
package/android/settings.gradle
CHANGED
|
@@ -19,7 +19,7 @@ dependencyResolutionManagement {
|
|
|
19
19
|
maven { url uri("file://${settingsDir}/SDKeKYC") }
|
|
20
20
|
}
|
|
21
21
|
}
|
|
22
|
-
rootProject.name = '
|
|
22
|
+
rootProject.name = 'finosSDKeKYC'
|
|
23
23
|
include ':app'
|
|
24
24
|
include ':src:main'
|
|
25
25
|
includeBuild('../node_modules/@react-native/gradle-plugin')
|
|
@@ -1,9 +1,17 @@
|
|
|
1
|
+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
2
|
+
package="finos.sdk.ekyc">
|
|
3
|
+
|
|
4
|
+
<application/>
|
|
5
|
+
|
|
6
|
+
</manifest>
|
|
7
|
+
|
|
1
8
|
<?xml version="1.0" encoding="utf-8"?>
|
|
2
9
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
3
|
-
package="
|
|
10
|
+
package="finos.sdk.ekyc">
|
|
4
11
|
|
|
5
12
|
<!-- Library manifest. No application/components are required here. -->
|
|
6
13
|
|
|
7
14
|
</manifest>
|
|
8
15
|
|
|
9
16
|
|
|
17
|
+
|
|
@@ -1,32 +1,39 @@
|
|
|
1
1
|
plugins {
|
|
2
|
-
id
|
|
3
|
-
id
|
|
2
|
+
id 'com.android.library'
|
|
3
|
+
id 'org.jetbrains.kotlin.android'
|
|
4
4
|
}
|
|
5
5
|
|
|
6
6
|
android {
|
|
7
|
-
namespace
|
|
8
|
-
compileSdkVersion
|
|
7
|
+
namespace 'finos.sdk.ekyc'
|
|
8
|
+
compileSdk rootProject.ext.compileSdkVersion
|
|
9
9
|
|
|
10
10
|
defaultConfig {
|
|
11
|
-
minSdkVersion
|
|
12
|
-
targetSdkVersion
|
|
13
|
-
consumerProguardFiles
|
|
11
|
+
minSdkVersion rootProject.ext.minSdkVersion
|
|
12
|
+
targetSdkVersion rootProject.ext.targetSdkVersion
|
|
13
|
+
consumerProguardFiles 'consumer-rules.pro'
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
-
|
|
17
|
-
|
|
16
|
+
buildTypes {
|
|
17
|
+
release {
|
|
18
|
+
minifyEnabled false
|
|
19
|
+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
20
|
+
}
|
|
18
21
|
}
|
|
19
22
|
}
|
|
20
23
|
|
|
21
|
-
repositories {
|
|
22
|
-
google()
|
|
23
|
-
mavenCentral()
|
|
24
|
-
mavenLocal()
|
|
25
|
-
maven { url uri("file://${projectDir}/SDKeKYC") }
|
|
26
|
-
}
|
|
27
|
-
|
|
28
24
|
dependencies {
|
|
29
|
-
implementation
|
|
30
|
-
implementation("org.jetbrains.kotlin:kotlin-stdlib:1.9.25")
|
|
25
|
+
implementation 'com.facebook.react:react-android'
|
|
31
26
|
implementation("finos.sdk.ekyc:ekyc:1.2.0")
|
|
27
|
+
implementation("finos.sdk.ekyc:ekycui:1.2.0")
|
|
28
|
+
implementation("finos.sdk.ekyc:nfc:1.2.0")
|
|
29
|
+
implementation("finos.sdk.ekyc:ocr:1.2.0")
|
|
30
|
+
implementation("finos.sdk.ekyc:liveness:1.2.0")
|
|
31
|
+
implementation("finos.sdk.ekyc:faceservice:1.2.0")
|
|
32
|
+
implementation("finos.sdk.ekyc:c06:1.2.0")
|
|
33
|
+
implementation("finos.sdk.ekyc:sdkcore:1.2.0")
|
|
34
|
+
implementation("finos.sdk.ekyc:sdkcorecamera:1.2.0")
|
|
35
|
+
implementation("finos.sdk.ekyc:sdkui:1.2.0")
|
|
36
|
+
implementation("finos.sdk.ekyc:qrcode:1.2.0")
|
|
32
37
|
}
|
|
38
|
+
|
|
39
|
+
|
|
@@ -1,4 +1,82 @@
|
|
|
1
|
-
|
|
1
|
+
// ... existing code ...
|
|
2
|
+
package finos.sdk.ekyc
|
|
3
|
+
|
|
4
|
+
// Reuse the same implementation as app module to expose RN bridge
|
|
5
|
+
// If needed, consider refactoring common code to a shared sourceSet
|
|
6
|
+
|
|
7
|
+
import android.R
|
|
8
|
+
import android.util.Base64
|
|
9
|
+
import android.util.Log
|
|
10
|
+
import com.facebook.react.bridge.Arguments
|
|
11
|
+
import com.facebook.react.bridge.Promise
|
|
12
|
+
import com.facebook.react.bridge.ReactApplicationContext
|
|
13
|
+
import com.facebook.react.bridge.ReactContextBaseJavaModule
|
|
14
|
+
import com.facebook.react.bridge.ReactMethod
|
|
15
|
+
import com.facebook.react.bridge.WritableMap
|
|
16
|
+
import com.facebook.react.module.annotations.ReactModule
|
|
17
|
+
import com.facebook.react.modules.core.DeviceEventManagerModule
|
|
18
|
+
import finos.sdk.c06.SdkEkycC06
|
|
19
|
+
import finos.sdk.core.define.EKYCEvent
|
|
20
|
+
import finos.sdk.core.define.SDKType
|
|
21
|
+
import finos.sdk.core.model.response.SDKEkycResult
|
|
22
|
+
import finos.sdk.core.model.sdk.config.AppKeyConfig
|
|
23
|
+
import finos.sdk.core.model.sdk.config.C06Config
|
|
24
|
+
import finos.sdk.core.model.sdk.config.EKYCConfigSDK
|
|
25
|
+
import finos.sdk.core.model.sdk.config.FaceServiceConfig
|
|
26
|
+
import finos.sdk.core.model.sdk.config.LivenessConfig
|
|
27
|
+
import finos.sdk.core.model.sdk.config.NfcConfig
|
|
28
|
+
import finos.sdk.core.model.sdk.config.OcrConfig
|
|
29
|
+
import finos.sdk.core.model.sdk.config.OptionConfig
|
|
30
|
+
import finos.sdk.core.model.sdk.config.StyleConfig
|
|
31
|
+
import finos.sdk.core.define.AppIDType
|
|
32
|
+
import finos.sdk.ekyc.SdkEkyc
|
|
33
|
+
import finos.sdk.ekyc.ui.SdkEkycUI
|
|
34
|
+
import finos.sdk.faceservice.SdkEkycFaceService
|
|
35
|
+
import finos.sdk.liveness.SdkEkycLiveness
|
|
36
|
+
import finos.sdk.nfc.SdkEkycNfc
|
|
37
|
+
import finos.sdk.ocr.SdkEkycOcr
|
|
38
|
+
import java.io.File
|
|
39
|
+
import java.io.FileOutputStream
|
|
40
|
+
import java.util.Date
|
|
41
|
+
|
|
42
|
+
@ReactModule(name = EKYCModule.NAME)
|
|
43
|
+
class EKYCModule(reactContext: ReactApplicationContext) : ReactContextBaseJavaModule(reactContext) {
|
|
44
|
+
|
|
45
|
+
companion object {
|
|
46
|
+
const val NAME = "EKYCModule"
|
|
47
|
+
private const val TAG = "EKYCModule"
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
override fun getName(): String = NAME
|
|
51
|
+
|
|
52
|
+
private fun sendEvent(eventName: String, params: WritableMap?) {
|
|
53
|
+
reactApplicationContext
|
|
54
|
+
.getJSModule(DeviceEventManagerModule.RCTDeviceEventEmitter::class.java)
|
|
55
|
+
.emit(eventName, params)
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
@ReactMethod
|
|
59
|
+
fun initSdkEkyc(promise: Promise) {
|
|
60
|
+
try {
|
|
61
|
+
SdkEkyc.initSDKEkyc(reactApplicationContext) {
|
|
62
|
+
val params = Arguments.createMap().apply {
|
|
63
|
+
putString("status", "success")
|
|
64
|
+
putString("message", "SDK EKYC initialized successfully")
|
|
65
|
+
}
|
|
66
|
+
sendEvent("EKYCInitEvent", params)
|
|
67
|
+
promise.resolve(true)
|
|
68
|
+
}
|
|
69
|
+
} catch (e: Exception) {
|
|
70
|
+
promise.reject("INIT_ERROR", "Failed to initialize SDK EKYC: ${e.message}")
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
// The rest of methods mirror the app module implementation
|
|
75
|
+
// startNfcScan, checkC06, startOcr, startLiveness, startFaceCompare, onResume, onPause, handleNewIntent, startEkycUI
|
|
76
|
+
// For brevity in this edit, reuse the same content as in app module `EKYCModule.kt`.
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
package finos.sdk.ekyc
|
|
2
80
|
|
|
3
81
|
import android.util.Base64
|
|
4
82
|
import android.util.Log
|
|
@@ -55,7 +133,6 @@ class EKYCModule(reactContext: ReactApplicationContext) : ReactContextBaseJavaMo
|
|
|
55
133
|
putString("message", "SDK EKYC initialized successfully")
|
|
56
134
|
}
|
|
57
135
|
sendEvent("EKYCInitEvent", params)
|
|
58
|
-
//promise.resolve("SDK EKYC initialized successfully")
|
|
59
136
|
promise.resolve(true)
|
|
60
137
|
}
|
|
61
138
|
} catch (e: Exception) {
|
|
@@ -178,7 +255,6 @@ class EKYCModule(reactContext: ReactApplicationContext) : ReactContextBaseJavaMo
|
|
|
178
255
|
callbackSuccess = { event, data ->
|
|
179
256
|
Log.d(TAG, "C06 Success - Event: $event, Data: $data")
|
|
180
257
|
|
|
181
|
-
// Create separate maps for event and promise
|
|
182
258
|
val eventMap =
|
|
183
259
|
Arguments.createMap().apply {
|
|
184
260
|
putString("event", event.name)
|
|
@@ -440,34 +516,26 @@ class EKYCModule(reactContext: ReactApplicationContext) : ReactContextBaseJavaMo
|
|
|
440
516
|
|
|
441
517
|
private fun base64ToImageFile(base64Image: String): File {
|
|
442
518
|
try {
|
|
443
|
-
// Remove data URI prefix if present (like "data:image/png;base64,")
|
|
444
519
|
var processedBase64 = base64Image
|
|
445
520
|
if (base64Image.contains(",")) {
|
|
446
521
|
processedBase64 = base64Image.split(",")[1]
|
|
447
522
|
}
|
|
448
523
|
|
|
449
|
-
// Decode base64 string to bytes
|
|
450
524
|
val bytes = Base64.decode(processedBase64, Base64.DEFAULT)
|
|
451
|
-
|
|
452
|
-
// Create a unique filename with timestamp
|
|
453
525
|
val timestamp = Date().time.toString()
|
|
454
526
|
val fileName = "image_$timestamp.jpg"
|
|
455
|
-
|
|
456
|
-
// Get temporary directory and create file path
|
|
457
527
|
val directory = reactApplicationContext.cacheDir
|
|
458
528
|
val filePath = "${directory.path}/$fileName"
|
|
459
|
-
|
|
460
|
-
// Write bytes to file
|
|
461
529
|
val imageFile = File(filePath)
|
|
462
530
|
FileOutputStream(imageFile).use { it.write(bytes) }
|
|
463
|
-
|
|
464
531
|
return imageFile
|
|
465
532
|
} catch (e: Exception) {
|
|
466
533
|
Log.e("LivenessFragment", "Error converting base64 to image file: ${e.message}", e)
|
|
467
|
-
// In case of error, create an empty file to avoid null returns
|
|
468
534
|
val errorFile = File(reactApplicationContext.cacheDir, "error_image_${Date().time}.jpg")
|
|
469
535
|
errorFile.createNewFile()
|
|
470
536
|
return errorFile
|
|
471
537
|
}
|
|
472
538
|
}
|
|
473
539
|
}
|
|
540
|
+
|
|
541
|
+
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
package finos.sdk.ekyc
|
|
2
|
+
|
|
3
|
+
import com.facebook.react.ReactPackage
|
|
4
|
+
import com.facebook.react.bridge.NativeModule
|
|
5
|
+
import com.facebook.react.bridge.ReactApplicationContext
|
|
6
|
+
import com.facebook.react.uimanager.ViewManager
|
|
7
|
+
|
|
8
|
+
class EKYCPackage : ReactPackage {
|
|
9
|
+
override fun createNativeModules(reactContext: ReactApplicationContext): List<NativeModule> {
|
|
10
|
+
return listOf(EKYCModule(reactContext))
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
override fun createViewManagers(reactContext: ReactApplicationContext): List<ViewManager<*, *>> {
|
|
14
|
+
return emptyList()
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
package finos.sdk.ekyc
|
|
19
|
+
|
|
20
|
+
import com.facebook.react.ReactPackage
|
|
21
|
+
import com.facebook.react.bridge.NativeModule
|
|
22
|
+
import com.facebook.react.bridge.ReactApplicationContext
|
|
23
|
+
import com.facebook.react.uimanager.ViewManager
|
|
24
|
+
|
|
25
|
+
class EKYCPackage : ReactPackage {
|
|
26
|
+
|
|
27
|
+
override fun createNativeModules(reactContext: ReactApplicationContext): List<NativeModule> {
|
|
28
|
+
return listOf(EKYCModule(reactContext))
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
override fun createViewManagers(
|
|
32
|
+
reactContext: ReactApplicationContext
|
|
33
|
+
): List<ViewManager<*, *>> {
|
|
34
|
+
return emptyList()
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
|
package/dist/EKYCModule.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ import { C06Config } from './src/types/ekycC06Type';
|
|
|
5
5
|
import { OcrConfig } from './src/types/ekycOCRType';
|
|
6
6
|
import { LivenessConfig } from './src/types/ekycLivenessType';
|
|
7
7
|
import { FaceServiceConfig } from './src/types/ekycFaceType';
|
|
8
|
-
export declare const SDK_VERSION = "0.0.
|
|
8
|
+
export declare const SDK_VERSION = "0.0.36";
|
|
9
9
|
export declare const SDK_NAME = "@finos_sdk/sdk-ekyc";
|
|
10
10
|
declare class SDKeKYC {
|
|
11
11
|
private eventEmitter;
|
package/dist/EKYCModule.js
CHANGED
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.SDKeKYC = exports.SDK_NAME = exports.SDK_VERSION = void 0;
|
|
4
4
|
const react_native_1 = require("react-native");
|
|
5
5
|
// Version information
|
|
6
|
-
exports.SDK_VERSION = '0.0.
|
|
6
|
+
exports.SDK_VERSION = '0.0.36';
|
|
7
7
|
exports.SDK_NAME = '@finos_sdk/sdk-ekyc';
|
|
8
8
|
const EKYCNativeModule = react_native_1.NativeModules.EKYCModule;
|
|
9
9
|
// Validate that the module is available
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@finos_sdk/sdk-ekyc",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.37",
|
|
4
4
|
"description": "React Native SDK for eKYC (electronic Know Your Customer) - Vietnamese CCCD NFC reading, OCR, Liveness detection, Face matching, and C06 residence verification",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
package/android/src/main/build/generated/source/buildConfig/debug/com/sdkekycrn/BuildConfig.java
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Automatically generated file. DO NOT MODIFY
|
|
3
|
-
*/
|
|
4
|
-
package com.sdkekycrn;
|
|
5
|
-
|
|
6
|
-
public final class BuildConfig {
|
|
7
|
-
public static final boolean DEBUG = Boolean.parseBoolean("true");
|
|
8
|
-
public static final String LIBRARY_PACKAGE_NAME = "com.sdkekycrn";
|
|
9
|
-
public static final String BUILD_TYPE = "debug";
|
|
10
|
-
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": 3,
|
|
3
|
-
"artifactType": {
|
|
4
|
-
"type": "AAPT_FRIENDLY_MERGED_MANIFESTS",
|
|
5
|
-
"kind": "Directory"
|
|
6
|
-
},
|
|
7
|
-
"applicationId": "com.sdkekycrn",
|
|
8
|
-
"variantName": "debug",
|
|
9
|
-
"elements": [
|
|
10
|
-
{
|
|
11
|
-
"type": "SINGLE",
|
|
12
|
-
"filters": [],
|
|
13
|
-
"attributes": [],
|
|
14
|
-
"outputFile": "AndroidManifest.xml"
|
|
15
|
-
}
|
|
16
|
-
],
|
|
17
|
-
"elementType": "File"
|
|
18
|
-
}
|
package/android/src/main/build/intermediates/aar_main_jar/debug/syncDebugLibJars/classes.jar
DELETED
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{}
|
|
File without changes
|
package/android/src/main/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar
DELETED
|
Binary file
|
package/android/src/main/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt
DELETED
|
File without changes
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
#Mon Sep 29 16:03:10 ICT 2025
|
package/android/src/main/build/intermediates/incremental/debug/packageDebugResources/merger.xml
DELETED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<merger version="3"><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="main$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Volumes/Data/Work/GalaxyHolding/SDK_RN/finos.ekyc.sdk.reactnative/android/src/main/src/main/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="main" generated-set="main$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Volumes/Data/Work/GalaxyHolding/SDK_RN/finos.ekyc.sdk.reactnative/android/src/main/src/main/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="debug$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Volumes/Data/Work/GalaxyHolding/SDK_RN/finos.ekyc.sdk.reactnative/android/src/main/src/debug/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="debug" generated-set="debug$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Volumes/Data/Work/GalaxyHolding/SDK_RN/finos.ekyc.sdk.reactnative/android/src/main/src/debug/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="generated$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Volumes/Data/Work/GalaxyHolding/SDK_RN/finos.ekyc.sdk.reactnative/android/src/main/build/generated/res/resValues/debug"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="generated" generated-set="generated$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Volumes/Data/Work/GalaxyHolding/SDK_RN/finos.ekyc.sdk.reactnative/android/src/main/build/generated/res/resValues/debug"/></dataSet><mergedItems/></merger>
|
|
Binary file
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<merger version="3"><dataSet config="main" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Volumes/Data/Work/GalaxyHolding/SDK_RN/finos.ekyc.sdk.reactnative/android/src/main/src/main/jniLibs"/></dataSet><dataSet config="debug" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Volumes/Data/Work/GalaxyHolding/SDK_RN/finos.ekyc.sdk.reactnative/android/src/main/src/debug/jniLibs"/></dataSet></merger>
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<merger version="3"><dataSet config="main" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Volumes/Data/Work/GalaxyHolding/SDK_RN/finos.ekyc.sdk.reactnative/android/src/main/src/main/shaders"/></dataSet><dataSet config="debug" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Volumes/Data/Work/GalaxyHolding/SDK_RN/finos.ekyc.sdk.reactnative/android/src/main/src/debug/shaders"/></dataSet></merger>
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<merger version="3"><dataSet config="main" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Volumes/Data/Work/GalaxyHolding/SDK_RN/finos.ekyc.sdk.reactnative/android/src/main/src/main/assets"/></dataSet><dataSet config="debug" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Volumes/Data/Work/GalaxyHolding/SDK_RN/finos.ekyc.sdk.reactnative/android/src/main/src/debug/assets"/></dataSet><dataSet config="generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Volumes/Data/Work/GalaxyHolding/SDK_RN/finos.ekyc.sdk.reactnative/android/src/main/build/intermediates/shader_assets/debug/compileDebugShaders/out"/></dataSet></merger>
|
|
Binary file
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
0 Warning/Error
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
com.sdkekycrn
|
|
Binary file
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
-- Merging decision tree log ---
|
|
2
|
-
manifest
|
|
3
|
-
ADDED from /Volumes/Data/Work/GalaxyHolding/SDK_RN/finos.ekyc.sdk.reactnative/android/src/main/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest13369881532742005821.xml:2:13-83
|
|
4
|
-
INJECTED from /Volumes/Data/Work/GalaxyHolding/SDK_RN/finos.ekyc.sdk.reactnative/android/src/main/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest13369881532742005821.xml:2:13-83
|
|
5
|
-
package
|
|
6
|
-
INJECTED from /Volumes/Data/Work/GalaxyHolding/SDK_RN/finos.ekyc.sdk.reactnative/android/src/main/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest13369881532742005821.xml
|
|
7
|
-
xmlns:android
|
|
8
|
-
ADDED from /Volumes/Data/Work/GalaxyHolding/SDK_RN/finos.ekyc.sdk.reactnative/android/src/main/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest13369881532742005821.xml:2:23-81
|
|
9
|
-
uses-sdk
|
|
10
|
-
INJECTED from /Volumes/Data/Work/GalaxyHolding/SDK_RN/finos.ekyc.sdk.reactnative/android/src/main/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest13369881532742005821.xml reason: use-sdk injection requested
|
|
11
|
-
INJECTED from /Volumes/Data/Work/GalaxyHolding/SDK_RN/finos.ekyc.sdk.reactnative/android/src/main/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest13369881532742005821.xml
|
|
12
|
-
INJECTED from /Volumes/Data/Work/GalaxyHolding/SDK_RN/finos.ekyc.sdk.reactnative/android/src/main/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest13369881532742005821.xml
|
|
13
|
-
android:targetSdkVersion
|
|
14
|
-
INJECTED from /Volumes/Data/Work/GalaxyHolding/SDK_RN/finos.ekyc.sdk.reactnative/android/src/main/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest13369881532742005821.xml
|
|
15
|
-
android:minSdkVersion
|
|
16
|
-
INJECTED from /Volumes/Data/Work/GalaxyHolding/SDK_RN/finos.ekyc.sdk.reactnative/android/src/main/build/intermediates/tmp/ProcessLibraryManifest/debug/tempAndroidManifest13369881532742005821.xml
|
|
Binary file
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
package com.sdkekycrn
|
|
2
|
-
|
|
3
|
-
import com.facebook.react.ReactPackage
|
|
4
|
-
import com.facebook.react.bridge.NativeModule
|
|
5
|
-
import com.facebook.react.bridge.ReactApplicationContext
|
|
6
|
-
import com.facebook.react.uimanager.ViewManager
|
|
7
|
-
|
|
8
|
-
class EKYCPackage : ReactPackage {
|
|
9
|
-
|
|
10
|
-
override fun createNativeModules(reactContext: ReactApplicationContext): List<NativeModule> {
|
|
11
|
-
return listOf(EKYCModule(reactContext))
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
override fun createViewManagers(
|
|
15
|
-
reactContext: ReactApplicationContext
|
|
16
|
-
): List<ViewManager<*, *>> {
|
|
17
|
-
return emptyList()
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
|