@socure-inc/docv-react-native 5.3.0 → 5.3.2
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 +5 -5
- package/android/build.gradle +1 -1
- package/package.json +1 -1
- package/socure-docv-react-native.podspec +3 -3
package/README.md
CHANGED
|
@@ -19,7 +19,7 @@ The Predictive Document Verification (DocV) SDK for React Native is a React Nati
|
|
|
19
19
|
|
|
20
20
|
## React Native New Architecture Support
|
|
21
21
|
|
|
22
|
-
Starting with
|
|
22
|
+
Starting with version 5.2.8, the wrapper fully supports the **React Native New Architecture** (TurboModules / Fabric) introduced in React Native 0.79+. Both Old Architecture and New Architecture builds are supported from the same package with no configuration changes required.
|
|
23
23
|
|
|
24
24
|
### What changed
|
|
25
25
|
|
|
@@ -62,8 +62,8 @@ Before you begin, ensure you have the following:
|
|
|
62
62
|
|
|
63
63
|
**iOS**
|
|
64
64
|
|
|
65
|
-
- Xcode version
|
|
66
|
-
- Support for iOS
|
|
65
|
+
- Xcode version 16+
|
|
66
|
+
- Support for iOS 15 and later
|
|
67
67
|
|
|
68
68
|
**Android**
|
|
69
69
|
|
|
@@ -96,7 +96,7 @@ For the iOS app, you can install the DocV iOS SDK into your project using Cocoap
|
|
|
96
96
|
|
|
97
97
|
1. In your root project folder, open your `Podfile` with a text editor.
|
|
98
98
|
2. Specify the following project dependencies:
|
|
99
|
-
- Replace the deployment target with `platform :ios, '
|
|
99
|
+
- Replace the deployment target with `platform :ios, '15.0'`.
|
|
100
100
|
- Add the following line:
|
|
101
101
|
|
|
102
102
|
```
|
|
@@ -240,7 +240,7 @@ The `pod install` command generates a `.xcworkspace` file with all the configur
|
|
|
240
240
|
|
|
241
241
|
1. Close Xcode if it's already open.
|
|
242
242
|
2. Use the `.xcworkspace` file reopen your project in Xcode.
|
|
243
|
-
3. Check that your deployment target is set to iOS
|
|
243
|
+
3. Check that your deployment target is set to iOS 15.0 or later.
|
|
244
244
|
|
|
245
245
|
### Request camera permissions
|
|
246
246
|
|
package/android/build.gradle
CHANGED
|
@@ -144,7 +144,7 @@ dependencies {
|
|
|
144
144
|
//noinspection GradleDynamicVersion
|
|
145
145
|
implementation "com.facebook.react:react-native:+"
|
|
146
146
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
147
|
-
implementation "com.socure.android:docv-capture:5.5.
|
|
147
|
+
implementation "com.socure.android:docv-capture:5.5.1"
|
|
148
148
|
|
|
149
149
|
def retrofit_version = "2.9.0"
|
|
150
150
|
implementation "com.squareup.retrofit2:retrofit:$retrofit_version"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@socure-inc/docv-react-native",
|
|
3
|
-
"version": "5.3.
|
|
3
|
+
"version": "5.3.2",
|
|
4
4
|
"description": "The Predictive Document Verification (DocV) SDK React Native bridge allows you to use the DocV SDK v5 for Android and iOS in your React Native application.",
|
|
5
5
|
"main": "lib/commonjs/index",
|
|
6
6
|
"module": "lib/module/index",
|
|
@@ -11,13 +11,13 @@ Pod::Spec.new do |s|
|
|
|
11
11
|
s.authors = package["author"]
|
|
12
12
|
s.source = { :git => "https://github.com/socure-inc/socure-docv-demo-app-react-native", :tag => "#{s.version}" }
|
|
13
13
|
|
|
14
|
-
s.platforms = { :ios => "
|
|
14
|
+
s.platforms = { :ios => "15.0" }
|
|
15
15
|
|
|
16
16
|
s.source_files = "ios/**/*.{h,m,mm,swift}"
|
|
17
17
|
|
|
18
18
|
install_modules_dependencies(s)
|
|
19
19
|
|
|
20
|
-
s.dependency "SocureDocV", "5.5.
|
|
21
|
-
s.dependency "SocureDeviceRisk", "4.
|
|
20
|
+
s.dependency "SocureDocV", "5.5.2"
|
|
21
|
+
s.dependency "SocureDeviceRisk", "4.10.0"
|
|
22
22
|
|
|
23
23
|
end
|