Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Update metadata and README
  • Loading branch information
stuartmorgan-g committed Aug 1, 2024
commit 0ee22468e88d37fea4a999b41c3719d43e21c251
4 changes: 4 additions & 0 deletions packages/local_auth/local_auth/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.3.0

* Adds endorsed macOS support.

## 2.2.0

* Switches endorsed iOS implementation to `local_auth_darwin`.
Expand Down
6 changes: 3 additions & 3 deletions packages/local_auth/local_auth/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ the user.
On supported devices, this includes authentication with biometrics such as
fingerprint or facial recognition.

| | Android | iOS | Windows |
|-------------|-----------|-------|-------------|
| **Support** | SDK 16+\* | 12.0+ | Windows 10+ |
| | Android | iOS | macOS | Windows |
|-------------|-----------|-------|--------|-------------|
| **Support** | SDK 16+\* | 12.0+ | 10.14+ |Windows 10+ |

## Usage

Expand Down
6 changes: 4 additions & 2 deletions packages/local_auth/local_auth/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: Flutter plugin for Android and iOS devices to allow local
authentication via fingerprint, touch ID, face ID, passcode, pin, or pattern.
repository: https://github.com/flutter/packages/tree/main/packages/local_auth/local_auth
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+local_auth%22
version: 2.2.0
version: 2.3.0

environment:
sdk: ^3.2.3
Expand All @@ -16,14 +16,16 @@ flutter:
default_package: local_auth_android
ios:
default_package: local_auth_darwin
macos:
default_package: local_auth_darwin
windows:
default_package: local_auth_windows

dependencies:
flutter:
sdk: flutter
local_auth_android: ^1.0.0
local_auth_darwin: ^1.2.1
local_auth_darwin: ^1.4.0
local_auth_platform_interface: ^1.0.1
local_auth_windows: ^1.0.0

Expand Down