react-native-zybanbifbio-module 0.4.2 → 0.4.4
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/README.md +4 -0
- package/android/build.gradle +12 -11
- package/package.json +1 -1
- package/react-native-zybanbifbio-module.podspec +1 -1
package/README.md
CHANGED
|
@@ -15,7 +15,11 @@ La versión 0.4.0 o superior usa la nueva estructurá en el request -> opciones
|
|
|
15
15
|
```
|
|
16
16
|
ejm. NativeModules.ZyBanbifBioRn.validacionFacialOcr(opciones).then(result => {})
|
|
17
17
|
```
|
|
18
|
+
```
|
|
19
|
+
Homologación de codigo de retorno cuando no se tienen permisos otorgados
|
|
20
|
+
-Retorna Código 9101:Permisos no otorgados cuando el usuario seleciona "No Permitir" en iOS y "Denegar" en Android.
|
|
18
21
|
|
|
22
|
+
```
|
|
19
23
|
|
|
20
24
|
## Installation
|
|
21
25
|
|
package/android/build.gradle
CHANGED
|
@@ -39,15 +39,16 @@ android {
|
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
rootProject.allprojects {
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
42
|
+
repositories {
|
|
43
|
+
google()
|
|
44
|
+
mavenCentral()
|
|
45
|
+
maven {
|
|
46
|
+
url = uri("https://maven.regulaforensics.com/RegulaDocumentReader")
|
|
47
|
+
}
|
|
48
|
+
maven {
|
|
49
|
+
url = uri("https://repo.zytrust.com/artifactory/zy-mobile-maven")
|
|
50
|
+
}
|
|
46
51
|
}
|
|
47
|
-
maven {
|
|
48
|
-
url "https://maven.regulaforensics.com/RegulaDocumentReader"
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
52
|
}
|
|
52
53
|
|
|
53
54
|
dependencies {
|
|
@@ -93,8 +94,8 @@ dependencies {
|
|
|
93
94
|
implementation 'com.idemia.smartsdk.remote:metadata-crypto:1.0.2'//11 es jar
|
|
94
95
|
implementation 'morpho.lkms-server:lkms-client-crypto:2.1.0-alpha2'//4
|
|
95
96
|
|
|
96
|
-
implementation(group: 'com.zy.android.lib.bio.facial.api', name: 'facial', version: '1.8.
|
|
97
|
-
implementation(group: 'com.zy.banbif.lib.zylibuiandroid.ui.pantallas', name: 'ui', version: '0.1.
|
|
97
|
+
implementation(group: 'com.zy.android.lib.bio.facial.api', name: 'facial', version: '1.8.14', ext: 'aar')
|
|
98
|
+
implementation(group: 'com.zy.banbif.lib.zylibuiandroid.ui.pantallas', name: 'ui', version: '0.1.20', ext: 'aar')
|
|
98
99
|
|
|
99
100
|
/************OCR************/
|
|
100
101
|
implementation 'com.google.android.gms:play-services-vision:20.1.3'
|
|
@@ -104,7 +105,7 @@ dependencies {
|
|
|
104
105
|
}
|
|
105
106
|
implementation(group: 'com.zy.regula.sdk', name: 'capturaDocumento', version: '1.2.8', ext: 'aar')
|
|
106
107
|
|
|
107
|
-
implementation(group: 'com.zy.banbif.android.lib.sdk', name: 'validacionfacial', version: '5.4.
|
|
108
|
+
implementation(group: 'com.zy.banbif.android.lib.sdk', name: 'validacionfacial', version: '5.4.5', ext: 'aar')
|
|
108
109
|
|
|
109
110
|
implementation 'net.zetetic:android-database-sqlcipher:4.5.3'
|
|
110
111
|
implementation 'org.apache.commons:commons-imaging:1.0-alpha2'
|
package/package.json
CHANGED
|
@@ -15,7 +15,7 @@ Pod::Spec.new do |s|
|
|
|
15
15
|
s.source = { :git => "https://github.com/ZYTRUST/react-native-zybanbifbio-module.git", :tag => "#{s.version}" }
|
|
16
16
|
s.source_files = "ios/*.{h,m,mm}"
|
|
17
17
|
|
|
18
|
-
s.dependency 'zy_banbif_bio_lib_ios', '1.
|
|
18
|
+
s.dependency 'zy_banbif_bio_lib_ios', '1.1.3'
|
|
19
19
|
s.dependency 'React'
|
|
20
20
|
|
|
21
21
|
end
|