@socure-inc/docv-react-native 5.2.8 → 5.3.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
@@ -62,8 +62,8 @@ Before you begin, ensure you have the following:
62
62
 
63
63
  **iOS**
64
64
 
65
- - Xcode version 14.1+
66
- - Support for iOS 13 and later
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, '13.0'`.
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 13.0 or later.
243
+ 3. Check that your deployment target is set to iOS 15.0 or later.
244
244
 
245
245
  ### Request camera permissions
246
246
 
@@ -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.4.8"
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.2.8",
3
+ "version": "5.3.1",
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",
@@ -62,7 +62,7 @@
62
62
  "eslint-config-prettier": "^7.0.0",
63
63
  "eslint-plugin-prettier": "^3.1.3",
64
64
  "husky": "^4.2.5",
65
- "jest": "^26.0.1",
65
+ "jest": "^29.7.0",
66
66
  "pod-install": "^0.1.0",
67
67
  "prettier": "^2.0.5",
68
68
  "react": "18.2.0",
@@ -136,5 +136,6 @@
136
136
  "module",
137
137
  "typescript"
138
138
  ]
139
- }
139
+ },
140
+ "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
140
141
  }
@@ -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 => "13.0" }
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.4.2"
21
- s.dependency "SocureDeviceRisk", "4.8.1"
20
+ s.dependency "SocureDocV", "5.5.1"
21
+ s.dependency "SocureDeviceRisk", "4.10.0"
22
22
 
23
23
  end