File tree Expand file tree Collapse file tree 3 files changed +16
-8
lines changed Expand file tree Collapse file tree 3 files changed +16
-8
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
All notable changes to this project will be documented in this file.
3
+ ## [ 2.6.0] - 2021-12-26
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
+
3
11
## [ 2.5.1] - 2020-11-19
4
12
### Added
5
13
- YotiSDK Activity request code customisation.
Original file line number Diff line number Diff line change @@ -55,13 +55,13 @@ Add modules you require to your build.gradle:
55
55
``` groovy
56
56
dependencies {
57
57
//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 '
59
59
60
60
//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 '
62
62
63
63
//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 '
65
65
}
66
66
```
67
67
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ android {
8
8
applicationId " com.yoti.mobile.android.sdk.yotidocscan.sample"
9
9
minSdkVersion 21
10
10
targetSdkVersion 30
11
- versionCode 251
12
- versionName " 2.5.1 "
11
+ versionCode 260
12
+ versionName " 2.6.0 "
13
13
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
14
14
}
15
15
@@ -43,8 +43,8 @@ dependencies {
43
43
implementation ' androidx.appcompat:appcompat:1.2.0'
44
44
implementation ' androidx.core:core-ktx:1.3.2'
45
45
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 '
49
49
50
50
}
You can’t perform that action at this time.
0 commit comments