react-native-zybanbifbio-module 0.4.6 → 0.4.7

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 CHANGED
@@ -19,6 +19,9 @@ ejm. NativeModules.ZyBanbifBioRn.validacionFacialOcr(opciones).then(result => {}
19
19
  Homologación de codigo de retorno cuando no se tienen permisos otorgados
20
20
  -Retorna Código 9101:Permisos no otorgados cuando el usuario seleciona "No Permitir" en iOS y "Denegar" en Android.
21
21
 
22
+ ```
23
+ ```
24
+ La versión 0.4.07o superior contiene el provider en el manifest modulo react , para facilitar la integración
22
25
  ```
23
26
 
24
27
  ## Installation
@@ -1,6 +1,22 @@
1
1
  <manifest xmlns:android="http://schemas.android.com/apk/res/android"
2
+ xmlns:tools="http://schemas.android.com/tools"
2
3
  package="com.zybanbifbiomodule">
3
4
 
4
- <application android:allowBackup="true"></application>
5
+ <application android:allowBackup="true">
6
+ <provider
7
+ android:name="com.morpho.mph_bio_sdk.android.sdk.content_provider.BioStoreProvider"
8
+ android:authorities="${applicationId}.bio_store"
9
+ android:readPermission="${applicationId}.NEW_READ_MPH_BIO_SDK_PROVIDER"
10
+ android:writePermission="${applicationId}.NEW_WRITE_MPH_BIO_SDK_PROVIDER"
11
+ tools:replace="android:authorities, android:readPermission, android:writePermission" />
12
+
13
+ <provider
14
+ android:name="com.morpho.lkms.android.sdk.lkms_core.content_provider.LkmsStoreProvider"
15
+ android:authorities="${applicationId}.lkms"
16
+ android:readPermission="${applicationId}.NEW_READ_LKMS_LICENSE_PROVIDER"
17
+ android:writePermission="${applicationId}.NEW_WRITE_LKMS_LICENSE_PROVIDER"
18
+ tools:replace="android:authorities, android:readPermission, android:writePermission" />
19
+
20
+ </application>
5
21
 
6
22
  </manifest>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-zybanbifbio-module",
3
- "version": "0.4.6",
3
+ "version": "0.4.7",
4
4
  "description": "bio banbif",
5
5
  "scripts":
6
6
  {
@@ -28,4 +28,4 @@
28
28
  {
29
29
  "access": "public"
30
30
  }
31
- }
31
+ }