@getyoti/yoti-doc-scan-react-native 5.0.0 → 5.0.1
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
|
@@ -17,7 +17,7 @@ To integrate with Yoti IDV, a working infrastructure is needed (see [developers.
|
|
|
17
17
|
Start your integration by adding the following dependency to your `package.json` file:
|
|
18
18
|
```json
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@getyoti/yoti-doc-scan-react-native": "^5.0.
|
|
20
|
+
"@getyoti/yoti-doc-scan-react-native": "^5.0.1"
|
|
21
21
|
}
|
|
22
22
|
```
|
|
23
23
|
|
|
@@ -26,7 +26,7 @@ Continuing with your integration for Android, add the following property and rep
|
|
|
26
26
|
```groovy
|
|
27
27
|
buildscript {
|
|
28
28
|
ext {
|
|
29
|
-
yotiSdkVersion = "4.
|
|
29
|
+
yotiSdkVersion = "4.1.0"
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
32
|
allprojects {
|
package/android/build.gradle
CHANGED
|
@@ -5,13 +5,15 @@ def safeExtGet(prop, fallback) {
|
|
|
5
5
|
}
|
|
6
6
|
|
|
7
7
|
android {
|
|
8
|
-
|
|
8
|
+
namespace "com.yoti.reactnative.docscan"
|
|
9
|
+
|
|
10
|
+
compileSdk safeExtGet('compileSdkVersion', 34)
|
|
9
11
|
|
|
10
12
|
defaultConfig {
|
|
11
13
|
minSdkVersion safeExtGet('minSdkVersion', 21)
|
|
12
|
-
targetSdkVersion safeExtGet('targetSdkVersion',
|
|
13
|
-
versionCode
|
|
14
|
-
versionName "5.0.
|
|
14
|
+
targetSdkVersion safeExtGet('targetSdkVersion', 34)
|
|
15
|
+
versionCode 501
|
|
16
|
+
versionName "5.0.1"
|
|
15
17
|
ndk {
|
|
16
18
|
abiFilters "armeabi-v7a", "x86"
|
|
17
19
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
1
|
+
<manifest xmlns:android="http://schemas.android.com/apk/res/android" ></manifest>
|
package/package.json
CHANGED