Skip to content

Commit

Permalink
v8.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Flutter SDK Release User committed Dec 11, 2024
1 parent 4c2896e commit c617ae4
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [8.1.0] - 2024-12-05

- Update underlying Onfido native SDK versions:
- Android 22.1.+ (up from 22.0.+)
- iOS 32.1.+ (up from 32.0.+)

## [8.0.0] - 2024-11-7

- Removed `disableNFC` parameter (Use `nfcOption` with `NFCOptions.Disabled` value instead)
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version '1.0'

def onfidoSdkVersion = '22.0.+'
def onfidoSdkVersion = '22.1.+'

buildscript {
ext.kotlin_version = '1.9.22'
Expand Down
2 changes: 1 addition & 1 deletion android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<meta-data
android:name="onfido_integration_version"
android:value="8.0.0" />
android:value="8.1.0" />

</application>
</manifest>
4 changes: 2 additions & 2 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ PODS:
- fluttertoast (0.0.2):
- Flutter
- Toast
- Onfido (32.0.0)
- Onfido (32.1.1)
- onfido_sdk (0.0.1):
- Flutter
- Onfido (~> 32.0.0)
- Onfido (~> 32.1.1)
- Toast (4.1.1)
- webview_flutter_wkwebview (0.0.1):
- Flutter
Expand Down
2 changes: 1 addition & 1 deletion ios/Classes/PluginMetadata.m
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ - (instancetype)init
self = [super init];
if (self) {
_pluginPlatform = @"flutter";
_pluginVersion = @"8.0.0";
_pluginVersion = @"8.1.0";
}
return self;
}
Expand Down
2 changes: 1 addition & 1 deletion ios/onfido_sdk.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Pod::Spec.new do |s|
s.source = { :path => '.' }
s.source_files = 'Classes/**/*'
s.dependency 'Flutter'
s.dependency 'Onfido', '~> 32.0.0'
s.dependency 'Onfido', '~> 32.1.1'
s.platform = :ios, '13.0'

# Flutter.framework does not contain a i386 slice.
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: onfido_sdk
description: This library aims to help flutter developers integrating with the Onfido SDK.
version: 8.0.0
version: 8.1.0
homepage: https://onfido.com/
repository: https://github.com/onfido/flutter-sdk/

Expand Down

0 comments on commit c617ae4

Please sign in to comment.