Skip to content

Commit

Permalink
Update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Onfido Android Team committed Jul 6, 2020
1 parent b2d9655 commit 7b51048
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 9 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.MD
Expand Up @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

**Note**: If the strings translations change it will result in a MINOR version change, therefore you are responsible for testing your translated layout in case you are using custom translations. [More on language localisation](README.md#4-localisation)

## [7.2.0] - 06.07.2020

### Changed:
- Public: Improved US Driver Licence auto-capture performance

### Fixed:
- Public: Fixed an issue which was causing a false positive and improved MRZ detection on passports
- Public: Fixed some rare crashes related to CameraAPI

### Removed:
- Internal: Removed the zxing library dependency

## [7.1.0] - 25.06.2020

### Added:
Expand Down
8 changes: 4 additions & 4 deletions MIGRATION.md
@@ -1,6 +1,6 @@
# Onfido Android SDK Migration Guide

## '7.0.0' -> '7.1.0'
## `7.0.0` -> `7.1.0`

#### Deprecation
- EnterpriseFeatures class' constructor is deprecated. Please use `EnterpriseFeatures.Builder` instead.
Expand All @@ -27,7 +27,7 @@ val enterpriseFeatures: EnterpriseFeatures = EnterpriseFeatures.Builder().withHi
EnterpriseFeatures enterpriseFeatures = EnterpriseFeatures.builder().withHideOnfidoLogo(true).build();
```

## '6.0.0' -> '7.0.0'
## `6.0.0` -> `7.0.0`

### Breaking changes
- Migrated to AndroidX. If your app hasn't completed AndroidX migration yet, please see [AndroidX Migration](https://developer.android.com/jetpack/androidx/migrate).
Expand All @@ -36,7 +36,7 @@ EnterpriseFeatures enterpriseFeatures = EnterpriseFeatures.builder().withHideOnf
- `onfido_autocapture_manual_fallback_title`
- `onfido_autocapture_manual_fallback_description`

## '5.6.0' -> '6.0.0'
## `5.6.0` -> `6.0.0`

### Breaking changes
- Removed out-of-the-box Portuguese (`pt`) translation. If you would like to keep supporting Portuguese by providing your own XML files, please see [README](https://github.com/onfido/onfido-android-sdk#4-localisation)
Expand All @@ -46,7 +46,7 @@ EnterpriseFeatures enterpriseFeatures = EnterpriseFeatures.builder().withHideOnf
- `onfido_accessibility_video_pause`
- `onfido_accessibility_video_play`

## '5.5.0' -> '5.6.0'
## `5.5.0` -> `5.6.0`

#### Deprecation
- The `CaptureScreenStep` class is deprecated. We now recommend `DocumentCaptureStepBuilder` to customise document capture steps
Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -106,8 +106,8 @@ Average size (with Proguard enabled):

| ABI | Size |
| ----------- | :-----: |
| armeabi-v7a | 5.44 Mb |
| arm64-v8a | 6.31 Mb |
| armeabi-v7a | 6.29 Mb |
| arm64-v8a | 7.33 Mb |

#### 2.2 `onfido-capture-sdk-core`
Lighter, app size-friendly version. This version provides a set of basic image validations mostly provided by the backend.
Expand All @@ -127,7 +127,7 @@ Average size (with Proguard enabled):

| ABI | Size |
| ----------- | :-----: |
| universal | 2.99 Mb |
| universal | 3.84 Mb |

The sizes stated above were measured by building the minimum possible wrappers around our SDK,
using the following [stack](https://github.com/bitrise-io/bitrise.io/blob/master/system_reports/linux-docker-android-lts.log).
Expand Down
4 changes: 2 additions & 2 deletions sample-app/app/build.gradle
@@ -1,7 +1,7 @@
apply plugin: 'com.android.application'

def sdkVersion = '7.1.0'
def versionCodeNumber = 710
def sdkVersion = '7.2.0'
def versionCodeNumber = 720

android {
compileSdkVersion 29
Expand Down

0 comments on commit 7b51048

Please sign in to comment.