diff --git a/CHANGELOG.MD b/CHANGELOG.MD index d73baae..31555de 100644 --- a/CHANGELOG.MD +++ b/CHANGELOG.MD @@ -9,7 +9,17 @@ 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) -## [21.2.0] - 2024-08-30 +## [21.2.1] - 2024-09-27 + +### Changed + +- Added type, issuing country and side metadata to document video uploads + +### Fixed + +- Fixed a publication issue within our SDK modules, which caused our `.aar`s to be missing from Maven central for the `onfido-capture-sdk` module (none of the other modules were impacted). Consequently, SDK integrations that were only importing this dependency were failing to compile: the dependencies were not correctly pulled and therefore imports were failing. Note: this was only happening when *not* using Onfido Studio (i.e. the `onfido-workflow` dependency being added was masking/working around the problem) + +## [21.2.0] - 2024-09-03 ### Added diff --git a/README.md b/README.md index 9c95f8f..2c13399 100755 --- a/README.md +++ b/README.md @@ -97,7 +97,7 @@ Average size (with Proguard enabled): | ABI | Size | |-------------|:--------:| -| armeabi-v7a | 11.55 Mb | +| armeabi-v7a | 14.66 Mb | | arm64-v8a | 13.25 Mb | | universal | 21.20 Mb | diff --git a/sample-app-kotlin/app/build.gradle b/sample-app-kotlin/app/build.gradle index 7b74c42..717cc62 100644 --- a/sample-app-kotlin/app/build.gradle +++ b/sample-app-kotlin/app/build.gradle @@ -3,8 +3,8 @@ plugins { id 'kotlin-android' } -def sdkVersion = '21.2.0' -def versionCodeNumber = 2120 +def sdkVersion = '21.2.1' +def versionCodeNumber = 2121 android { namespace 'com.onfido.android.app.sample' diff --git a/sample-app/app/build.gradle b/sample-app/app/build.gradle index 7b122d6..5abe4b0 100644 --- a/sample-app/app/build.gradle +++ b/sample-app/app/build.gradle @@ -1,7 +1,7 @@ apply plugin: 'com.android.application' -def sdkVersion = '21.2.0' -def versionCodeNumber = 2120 +def sdkVersion = '21.2.1' +def versionCodeNumber = 2121 android { namespace 'com.onfido.android.app.sample'