File tree Expand file tree Collapse file tree 4 files changed +30
-16
lines changed Expand file tree Collapse file tree 4 files changed +30
-16
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.8.1] - 2022-03-07
4
+ ### Fixed
5
+ - Manifest merge issue solved.
6
+
7
+ ## [ 2.8.0] - 2022-03-02
8
+ ## Critical issue detected on this version (Manifest merge issue on client side), please use 2.8.1
9
+ ### Added
10
+ - Support for Filipino Phil Sys ID & UMID.
11
+ - Support for Young Scot Card.
12
+ - Improvements on document upload feedback: quality error detection.
13
+ - Improvements on NFC scan flow.
14
+
3
15
## [ 2.7.0] - 2021-09-21
4
16
### Added
5
17
- New verification step: Face capture. With it users can provide a selfie of themselves for face match check (ID document photo vs face capture)
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.7.0 '
58
+ implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan:2.8.1 '
59
59
60
60
//If you need supplementary documents
61
- implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:2.7.0 '
61
+ implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:2.8.1 '
62
62
63
63
//If you need liveness
64
- implementation 'com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:2.7.0 '
64
+ implementation 'com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:2.8.1 '
65
65
66
66
//If you need selfie capture
67
- implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture:2.7.0 '
67
+ implementation 'com.yoti.mobile.android.sdk:yoti-sdk-facecapture:2.8.1 '
68
68
}
69
69
```
70
70
@@ -191,6 +191,7 @@ class MainActivity : AppCompatActivity() {
191
191
| 3001 | An error occurred during a network request | Yes |
192
192
| 3002 | User has no network | Yes |
193
193
| 4000 | The user did not grant permissions to the camera | Yes |
194
+ | 4001 | User Wrong submission | Yes |
194
195
| 5000 | No camera (when user's camera was not found and file upload is not allowed) | No |
195
196
| 5002 | No more local tries for the liveness flow | Yes |
196
197
| 5003 | SDK is out-of-date - please update the SDK to the latest version | No |
Original file line number Diff line number Diff line change @@ -2,13 +2,13 @@ apply plugin: 'com.android.application'
2
2
apply plugin : ' kotlin-android'
3
3
4
4
android {
5
- compileSdkVersion 30
5
+ compileSdkVersion 31
6
6
defaultConfig {
7
7
applicationId " com.yoti.mobile.android.sdk.yotidocscan.sample"
8
8
minSdkVersion 21
9
- targetSdkVersion 30
10
- versionCode 270
11
- versionName " 2.7.0 "
9
+ targetSdkVersion 31
10
+ versionCode 281
11
+ versionName " 2.8.1 "
12
12
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
13
13
}
14
14
@@ -43,11 +43,11 @@ android {
43
43
dependencies {
44
44
implementation fileTree(dir : ' libs' , include : [' *.jar' ])
45
45
implementation " org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version "
46
- implementation ' androidx.appcompat:appcompat:1.3 .1'
47
- implementation ' androidx.core:core-ktx:1.6 .0'
46
+ implementation ' androidx.appcompat:appcompat:1.4 .1'
47
+ implementation ' androidx.core:core-ktx:1.7 .0'
48
48
49
- implementation ' com.yoti.mobile.android.sdk:yoti-sdk-doc-scan:2.7.0 '
50
- implementation ' com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:2.7.0 '
51
- implementation ' com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:2.7.0 '
52
- implementation ' com.yoti.mobile.android.sdk:yoti-sdk-facecapture:2.7.0 '
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 '
53
53
}
Original file line number Diff line number Diff line change 3
3
4
4
<application
5
5
android : allowBackup =" true"
6
+ android : supportsRtl =" true"
6
7
android : icon =" @mipmap/ic_launcher"
7
8
android : label =" @string/app_name"
8
9
android : roundIcon =" @mipmap/ic_launcher_round"
9
- android : supportsRtl =" true"
10
10
android : theme =" @style/AppTheme" >
11
11
12
- <activity android : name =" com.yoti.mobile.android.sdk.yotidocscan.sample.MainActivity" >
12
+ <activity android : name =" com.yoti.mobile.android.sdk.yotidocscan.sample.MainActivity"
13
+ android : exported =" true" >
13
14
<intent-filter >
14
15
<action android : name =" android.intent.action.MAIN" />
15
16
You can’t perform that action at this time.
0 commit comments