Skip to content

Commit a740720

Browse files
Merge pull request #30 from getyoti/release/2.6.0
[DEP-193] Release 2.6.0
2 parents b02fa81 + dbe3900 commit a740720

File tree

3 files changed

+22
-8
lines changed

3 files changed

+22
-8
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
3+
## [2.6.0] - 2021-03-05
4+
### Added
5+
- Support for custom privacy policy link.
6+
- Support third party identity check when it is required.
7+
- Multi page PDF viewer.
8+
- Error management: return error code 5009 when it is not possible to write/read device cache (storage error)
9+
- New documents supported: NEXUS Card and Bank Statement.
10+
311
## [2.5.1] - 2020-11-19
412
### Added
513
- YotiSDK Activity request code customisation.

README.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@ Add modules you require to your build.gradle:
5555
```groovy
5656
dependencies {
5757
//If you need document capture
58-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan:2.5.1'
58+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan:2.6.0'
5959
6060
//If you need supplementary documents
61-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:2.5.1'
61+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:2.6.0'
6262
6363
//If you need liveness
64-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:2.5.1'
64+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:2.6.0'
6565
}
6666
```
6767

@@ -199,6 +199,7 @@ class MainActivity : AppCompatActivity() {
199199
| 5004 | Unexpected internal error | No |
200200
| 5005 | Unexpected document scanning error | No |
201201
| 5006 | Unexpected liveness error | No |
202+
| 5009 | Storage Error: could not read/write on device app cache | No |
202203
| 6000 | Document Capture dependency not found error | No |
203204
| 6001 | Liveness Zoom dependency not found error | No |
204205
| 6002 | Supplementary document dependency not found error | No |
@@ -244,3 +245,8 @@ Once we have answered your question we may contact you again to discuss Yoti pro
244245

245246
## License
246247
Yoti Doc Scan Android SDK is under a Proprietary License see this [link](https://www.yoti.com/wp-content/uploads/2019/08/Yoti-Doc-Scan-SDK-Terms.pdf) for more information
248+
249+
We also list all open-source licensed software that has been incorporated into the SDK on files inside `.aar`.
250+
- res/raw/yds_identity_verification_licenses_core.json
251+
- res/raw/yds_identity_verification_licenses_id_document.json
252+
- res/raw/yds_identity_verification_licenses_supplementary_document.json

app/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ android {
88
applicationId "com.yoti.mobile.android.sdk.yotidocscan.sample"
99
minSdkVersion 21
1010
targetSdkVersion 30
11-
versionCode 251
12-
versionName "2.5.1"
11+
versionCode 260
12+
versionName "2.6.0"
1313
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1414
}
1515

@@ -43,8 +43,8 @@ dependencies {
4343
implementation 'androidx.appcompat:appcompat:1.2.0'
4444
implementation 'androidx.core:core-ktx:1.3.2'
4545

46-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan:2.5.1'
47-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:2.5.1'
48-
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:2.5.1'
46+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan:2.6.0'
47+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:2.6.0'
48+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:2.6.0'
4949

5050
}

0 commit comments

Comments
 (0)