File tree Expand file tree Collapse file tree 3 files changed +22
-10
lines changed Expand file tree Collapse file tree 3 files changed +22
-10
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.9.0] - 2022-08-24
4
+ ### Added
5
+ - Handle retry when liveness check fails due to user error
6
+ - Update biometric consent copy
7
+ - Improve in-session feedback handling
8
+ - Add "Front/Back" tabs for 2-sided documents on in-session feedback screens
9
+ - In-session feedback for expired documents
10
+ - Provide user guidance when we can't process pdf uploaded as a supplementary document
11
+ - Handle USA Permanent Residence card
12
+ - Introduce a new error screen for supplementary document pdf upload
13
+ - Bug fixes
14
+
3
15
## [ 2.8.1] - 2022-03-07
4
16
### Fixed
5
17
- Manifest merge issue solved.
Original file line number Diff line number Diff line change @@ -55,16 +55,16 @@ 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.8.1 '
58
+ implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan:2.9.0 '
59
59
60
60
//If you need supplementary documents
61
- implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:2.8.1 '
61
+ implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:2.9.0 '
62
62
63
63
//If you need liveness
64
- implementation 'com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:2.8.1 '
64
+ implementation 'com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:2.9.0 '
65
65
66
66
//If you need selfie capture
67
- implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture:2.8.1 '
67
+ implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture:2.9.0 '
68
68
}
69
69
```
70
70
Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ android {
7
7
applicationId " com.yoti.mobile.android.sdk.yotidocscan.sample"
8
8
minSdkVersion 21
9
9
targetSdkVersion 31
10
- versionCode 281
11
- versionName " 2.8.1 "
10
+ versionCode 290
11
+ versionName " 2.9.0 "
12
12
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
13
13
}
14
14
@@ -46,8 +46,8 @@ dependencies {
46
46
implementation ' androidx.appcompat:appcompat:1.4.1'
47
47
implementation ' androidx.core:core-ktx:1.7.0'
48
48
49
- implementation ' com.yoti.mobile.android.sdk:yoti-sdk-doc-scan:2.8.1 '
50
- implementation ' com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:2.8.1 '
51
- implementation ' com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:2.8.1 '
52
- implementation ' com.yoti.mobile.android.sdk:yoti-sdk-facecapture:2.8.1 '
49
+ implementation ' com.yoti.mobile.android.sdk:yoti-sdk-doc-scan:2.9.0 '
50
+ implementation ' com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:2.9.0 '
51
+ implementation ' com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:2.9.0 '
52
+ implementation ' com.yoti.mobile.android.sdk:yoti-sdk-facecapture:2.9.0 '
53
53
}
You can’t perform that action at this time.
0 commit comments