react-native-zybanbifbio-module 0.2.1 → 0.3.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 +91 -79
- package/package.json +1 -1
- package/android/libs/device-environment-2.1.1.1.aar +0 -0
- package/android/libs/face-3.5.0.aar +0 -0
- package/android/libs/lkms-client-crypto-2.1.0-alpha2.jar +0 -0
- package/android/libs/lkms-core-4.1.0.aar +0 -0
- package/android/libs/lkms-shared-2.1.0-alpha2.jar +0 -0
- package/android/libs/metadata-crypto-1.0.2.jar +0 -0
- package/android/libs/plugin-algorithm-f6-0-idd80-4.32.1.aar +0 -0
- package/android/libs/plugin-core-4.32.1.aar +0 -0
- package/android/libs/plugin-face-4.32.1.aar +0 -0
- package/android/libs/plugin-face-normal-4.32.1.aar +0 -0
- package/android/libs/remote-logging-1.0.8.aar +0 -0
- package/android/libs/service_provider_local-1.2.5.aar +0 -0
- package/android/libs/smartFace-4.32.1.aar +0 -0
- package/android/libs/smartsdk-face-native-lkms-2.4.0-face.aar +0 -0
- package/android/libs/zy-banbif-validacionfacial-lib-android-debug-5.3.15.aar +0 -0
- package/android/libs/zyOFacial_v9-debug-1.8.10.aar +0 -0
- package/android/libs/zylibregulaocr-debug-1.2.3.aar +0 -0
- package/android/libs/zylibuiandroid-debug-0.1.12.aar +0 -0
package/android/build.gradle
CHANGED
|
@@ -1,33 +1,46 @@
|
|
|
1
1
|
buildscript {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
repositories {
|
|
3
|
+
google()
|
|
4
|
+
mavenCentral()
|
|
5
|
+
}
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
7
|
+
dependencies {
|
|
8
|
+
classpath "com.android.tools.build:gradle:8.1.1"
|
|
9
|
+
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.22"
|
|
10
|
+
}
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
apply plugin: 'com.android.library'
|
|
14
14
|
apply plugin: 'kotlin-android'
|
|
15
15
|
|
|
16
16
|
android {
|
|
17
|
-
|
|
17
|
+
compileSdk 34
|
|
18
18
|
|
|
19
|
-
|
|
19
|
+
defaultConfig {
|
|
20
|
+
minSdkVersion 21
|
|
21
|
+
targetSdk 34
|
|
22
|
+
versionCode 1
|
|
23
|
+
versionName "1.0"
|
|
24
|
+
}
|
|
20
25
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
lint {
|
|
27
|
+
//disable 'MissingTranslation', 'TypographyFractions'
|
|
28
|
+
abortOnError false
|
|
29
|
+
checkReleaseBuilds false
|
|
30
|
+
}
|
|
31
|
+
packagingOptions {
|
|
32
|
+
exclude 'META-INF/DEPENDENCIES'
|
|
33
|
+
exclude 'META-INF/NOTICE'
|
|
34
|
+
exclude 'META-INF/LICENSE'
|
|
35
|
+
}
|
|
27
36
|
}
|
|
28
37
|
|
|
29
38
|
rootProject.allprojects {
|
|
30
39
|
repositories {
|
|
40
|
+
mavenCentral()
|
|
41
|
+
maven {
|
|
42
|
+
url "https://repo.zytrust.com/artifactory/zy-mobile-maven"
|
|
43
|
+
}
|
|
31
44
|
maven {
|
|
32
45
|
url "https://maven.regulaforensics.com/RegulaDocumentReader"
|
|
33
46
|
}
|
|
@@ -35,74 +48,73 @@ rootProject.allprojects {
|
|
|
35
48
|
}
|
|
36
49
|
|
|
37
50
|
dependencies {
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
51
|
+
//INICIO_ZY_ZYTRUST
|
|
52
|
+
implementation("com.facebook.react:react-android")
|
|
53
|
+
|
|
54
|
+
implementation 'androidx.appcompat:appcompat:1.4.0'
|
|
55
|
+
implementation 'com.google.android.material:material:1.5.0'
|
|
56
|
+
|
|
57
|
+
/************************gson***********************************/
|
|
58
|
+
implementation 'com.google.code.gson:gson:2.8.7'
|
|
59
|
+
|
|
60
|
+
/** * Retrofit ***/
|
|
61
|
+
implementation 'com.squareup.okhttp3:logging-interceptor:4.7.2'
|
|
62
|
+
implementation 'com.squareup.okhttp3:okhttp:4.7.2'
|
|
63
|
+
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
|
|
64
|
+
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
|
|
65
|
+
/** * Retrofit ***/
|
|
66
|
+
|
|
67
|
+
implementation 'androidx.annotation:annotation:1.0.0'
|
|
68
|
+
|
|
69
|
+
implementation 'androidx.constraintlayout:constraintlayout:2.1.1'
|
|
70
|
+
//implementation 'com.airbnb.android:lottie:3.0.1'
|
|
71
|
+
|
|
72
|
+
implementation "pl.droidsonroids.gif:android-gif-drawable:1.2.6"
|
|
73
|
+
|
|
74
|
+
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.9.20'
|
|
75
|
+
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4'
|
|
76
|
+
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.1'
|
|
77
|
+
|
|
78
|
+
implementation 'morpho.mph_bio_sdk.android:SmartFace:4.32.1@aar'//AGREGAR PRIMORDIAL INIT 0
|
|
79
|
+
implementation 'morpho.lkms-android:service_provider_local:1.2.5@aar'//3
|
|
80
|
+
implementation 'com.idemia.smartsdk:plugin-core:4.32.1@aar'//5
|
|
81
|
+
implementation 'com.idemia.logging:remote-logging:1.0.8@aar'//9
|
|
82
|
+
implementation 'com.idemia.smartsdk:smartsdk-face-native-lkms:2.4.0@aar'//13 TODO: cuando se compile la cuenta de zytrust usar implementation 'com.idemia.smartsdk:smartsdk-face-native-lkms:2.4.0@aar'
|
|
83
|
+
implementation 'com.idemia.smartsdk:plugin-face:4.32.1@aar' //14
|
|
84
|
+
implementation 'com.idemia.lkms:lkms-core:4.1.0@aar'//4
|
|
85
|
+
implementation 'com.idemia.smartsdk:plugin-algorithm-f6-0-idd80:4.32.1@aar'//15
|
|
86
|
+
implementation 'com.idemia.smartsdk:plugin-face-normal:4.32.1@aar'//12
|
|
87
|
+
implementation 'com.morpho.lkms.android.sdk.deviceenvironment:device-environment:2.1.2@aar'//4
|
|
88
|
+
implementation 'morpho.lkms-server:lkms-shared:2.1.0-alpha2'//4
|
|
89
|
+
implementation 'com.idemia.smartsdk.remote:metadata-crypto:1.0.2'//11 es jar
|
|
90
|
+
implementation 'morpho.lkms-server:lkms-client-crypto:2.1.0-alpha2'//4
|
|
91
|
+
|
|
92
|
+
implementation(group: 'com.zy.android.lib.bio.facial.api', name: 'facial', version: '1.8.11', ext: 'aar')
|
|
93
|
+
implementation(group: 'com.zy.banbif.lib.zylibuiandroid.ui.pantallas', name: 'ui', version: '0.1.15', ext: 'aar')
|
|
94
|
+
|
|
95
|
+
/************OCR************/
|
|
96
|
+
implementation 'com.google.android.gms:play-services-vision:20.1.3'
|
|
97
|
+
implementation 'com.regula.documentreader.core:fullauth:7.4.11455'
|
|
98
|
+
implementation('com.regula.documentreader:api:7.4.10090') {
|
|
99
|
+
transitive = true;
|
|
100
|
+
}
|
|
101
|
+
implementation(group: 'com.zy.regula.sdk', name: 'capturaDocumento', version: '1.2.8', ext: 'aar')
|
|
89
102
|
|
|
90
|
-
|
|
91
|
-
implementation files('libs/zy-banbif-validacionfacial-lib-android-debug-5.3.15.aar')
|
|
103
|
+
implementation(group: 'com.zy.banbif.android.lib.sdk', name: 'validacionfacial', version: '5.3.20', ext: 'aar')
|
|
92
104
|
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
105
|
+
implementation 'net.zetetic:android-database-sqlcipher:4.5.3'
|
|
106
|
+
implementation 'org.apache.commons:commons-imaging:1.0-alpha2'
|
|
107
|
+
implementation 'androidx.security:security-crypto:1.1.0-alpha01'
|
|
108
|
+
implementation 'androidx.activity:activity:1.9.1'
|
|
97
109
|
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
110
|
+
/*********************ENCRYPTACION SERVICIO**********************/
|
|
111
|
+
implementation 'commons-codec:commons-codec:1.10'
|
|
112
|
+
implementation 'com.auth0.android:jwtdecode:2.0.0'
|
|
101
113
|
|
|
102
|
-
|
|
114
|
+
/****************************************************************/
|
|
103
115
|
|
|
104
|
-
|
|
116
|
+
implementation 'com.airbnb.android:lottie:6.0.1'
|
|
105
117
|
|
|
106
|
-
|
|
118
|
+
//FIN_ZY_ZYTRUST
|
|
107
119
|
|
|
108
120
|
}
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|