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 +3 -0
- package/android/src/main/AndroidManifest.xml +17 -1
- package/package.json +2 -2
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"
|
|
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>
|