Skip to content

Commit

Permalink
Update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Onfido Product Support committed Jul 2, 2024
1 parent 1276211 commit 5d9232f
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 6 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,23 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
are responsible for testing your translated layout in case you are using custom
translations. [More on language localisation](https://documentation.onfido.com/sdk/android/#language-localization)

## [20.5.0] - 2024-07-02

### Added

- Added `withNFC(Disabled, Optional, Required)` when configuring NFC in `OnfidoConfig`
- Deprecated `disableNFC()`, use `withNFC(NFCOptions.Disabled)` instead

### Changed

- Added handling for the Studio workflows with abandoned or error state
- Fixed the ANR (Application Not Responding) issue that occurred when NFC scanning was canceled.

### Fixed

- Fixed tapping back from proof of address landing page exits the flow
- Added proguard rules for `androidx.window` Sidecar classes to avoid them being removed by R8 which causes crashes in some devices with abstract method `void androidx.window.sidecar.SidecarInterface$SidecarCallback.onDeviceStateChanged`

## [20.2.2] - 2024-06-25

### Fixed
Expand Down
6 changes: 6 additions & 0 deletions MIGRATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ The guides below are provided to ease the transition of existing applications us

If your migration involves upgrading across multiple SDK versions, be sure to read each individual guide in order to account for all relevant breaking changes.

## `20.4.0` -> `20.5.0`

### Deprecated API Changes

- Deprecated `disableNFC()` use `withNFC(NFCOptions.Disabled)` instead

## `20.0.0` -> `20.4.0`

### String Changes
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ Average size (with Proguard enabled):

| ABI | Size |
|-------------|:--------:|
| armeabi-v7a | 13.29 Mb |
| armeabi-v7a | 13.33 Mb |
| arm64-v8a | 13.25 Mb |
| universal | 21.20 Mb |

Expand All @@ -121,7 +121,7 @@ Average size (with Proguard enabled):

| ABI | Size |
|------------------|:--------:|
| core-armeabi-v7a | 10.17 Mb |
| core-armeabi-v7a | 10.21 Mb |
| core-arm64-v8a | 9.97 Mb |
| core-universal | 14.82 Mb |

Expand Down
4 changes: 2 additions & 2 deletions sample-app-kotlin/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ plugins {
id 'kotlin-android'
}

def sdkVersion = '20.4.0'
def versionCodeNumber = 2040
def sdkVersion = '20.5.0'
def versionCodeNumber = 2050

android {
compileSdkVersion 33
Expand Down
4 changes: 2 additions & 2 deletions sample-app/app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply plugin: 'com.android.application'

def sdkVersion = '20.4.0'
def versionCodeNumber = 2040
def sdkVersion = '20.5.0'
def versionCodeNumber = 2050

android {
compileSdkVersion 33
Expand Down

0 comments on commit 5d9232f

Please sign in to comment.