@getyoti/yoti-doc-scan-react-native 2.0.0 → 2.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 +2 -2
- package/android/build.gradle +2 -2
- package/package.json +1 -1
- package/yoti-doc-scan-react-native.podspec +1 -1
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": "^2.0.
|
|
20
|
+
"@getyoti/yoti-doc-scan-react-native": "^2.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 = "3.
|
|
29
|
+
yotiSdkVersion = "3.2.0"
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
32
|
allprojects {
|
package/android/build.gradle
CHANGED
|
@@ -11,8 +11,8 @@ android {
|
|
|
11
11
|
defaultConfig {
|
|
12
12
|
minSdkVersion safeExtGet('minSdkVersion', 21)
|
|
13
13
|
targetSdkVersion safeExtGet('targetSdkVersion', 29)
|
|
14
|
-
versionCode
|
|
15
|
-
versionName "2.0.
|
|
14
|
+
versionCode 205
|
|
15
|
+
versionName "2.0.1"
|
|
16
16
|
ndk {
|
|
17
17
|
abiFilters "armeabi-v7a", "x86"
|
|
18
18
|
}
|
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@ Pod::Spec.new do |spec|
|
|
|
9
9
|
spec.license = package["license"]
|
|
10
10
|
spec.author = package["author"]
|
|
11
11
|
spec.version = package["version"]
|
|
12
|
-
spec.pod_target_xcconfig = { "FRAMEWORK_SEARCH_PATHS" => "$(PODS_ROOT)/**" }
|
|
12
|
+
spec.pod_target_xcconfig = { "FRAMEWORK_SEARCH_PATHS" => "$(PODS_ROOT)/**" "$(PODS_XCFRAMEWORKS_BUILD_DIR)/**" }
|
|
13
13
|
spec.source = { :git => "https://github.com/getyoti/yoti-doc-scan-react-native.git", :tag => "#{spec.version}" }
|
|
14
14
|
spec.source_files = "ios/**/*.{h,m}"
|
|
15
15
|
spec.platform = :ios, "11.0"
|