Skip to content

Commit 6b2c3dc

Browse files
Release 2.8.1 - Bump up SDK version to 2.8.1
- Update SDK libraries - Target Android SDK version 31 & upgrade android libraries - Update README.md & CHANGELOG.md Related to DEP-267
1 parent 7eb0078 commit 6b2c3dc

File tree

4 files changed

+30
-16
lines changed

4 files changed

+30
-16
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22
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+
315
## [2.7.0] - 2021-09-21
416
### Added
517
- New verification step: Face capture. With it users can provide a selfie of themselves for face match check (ID document photo vs face capture)

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,16 +55,16 @@ 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.7.0'
58+
implementation 'com.yoti.mobile.android.sdk:yoti-sdk-doc-scan:2.8.1'
5959
6060
//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'
6262
6363
//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'
6565
6666
//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'
6868
}
6969
```
7070

@@ -191,6 +191,7 @@ class MainActivity : AppCompatActivity() {
191191
| 3001 | An error occurred during a network request | Yes |
192192
| 3002 | User has no network | Yes |
193193
| 4000 | The user did not grant permissions to the camera | Yes |
194+
| 4001 | User Wrong submission | Yes |
194195
| 5000 | No camera (when user's camera was not found and file upload is not allowed) | No |
195196
| 5002 | No more local tries for the liveness flow | Yes |
196197
| 5003 | SDK is out-of-date - please update the SDK to the latest version | No |

app/build.gradle

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ apply plugin: 'com.android.application'
22
apply plugin: 'kotlin-android'
33

44
android {
5-
compileSdkVersion 30
5+
compileSdkVersion 31
66
defaultConfig {
77
applicationId "com.yoti.mobile.android.sdk.yotidocscan.sample"
88
minSdkVersion 21
9-
targetSdkVersion 30
10-
versionCode 270
11-
versionName "2.7.0"
9+
targetSdkVersion 31
10+
versionCode 281
11+
versionName "2.8.1"
1212
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1313
}
1414

@@ -43,11 +43,11 @@ android {
4343
dependencies {
4444
implementation fileTree(dir: 'libs', include: ['*.jar'])
4545
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'
4848

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'
5353
}

app/src/main/AndroidManifest.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,14 @@
33

44
<application
55
android:allowBackup="true"
6+
android:supportsRtl="true"
67
android:icon="@mipmap/ic_launcher"
78
android:label="@string/app_name"
89
android:roundIcon="@mipmap/ic_launcher_round"
9-
android:supportsRtl="true"
1010
android:theme="@style/AppTheme">
1111

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">
1314
<intent-filter>
1415
<action android:name="android.intent.action.MAIN" />
1516

0 commit comments

Comments
 (0)