Skip to content

Commit 76a417c

Browse files
authoredApr 2, 2021
[local_auth] Update Jetpack dependencies (flutter#3786)
The plugin was still using several beta version of Jetpack libraries from 2 years ago. Updates to the latest stable version of each. Fixes flutter/flutter#52742

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed
 

‎packages/local_auth/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.1.2
2+
3+
* Update Jetpack dependencies to latest stable versions.
4+
15
## 1.1.1
26

37
* Update flutter_plugin_android_lifecycle dependency to 2.0.1 to fix an R8 issue

‎packages/local_auth/android/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ android {
3434
}
3535

3636
dependencies {
37-
api "androidx.core:core:1.1.0-beta01"
38-
api "androidx.biometric:biometric:1.0.0-beta01"
39-
api "androidx.fragment:fragment:1.1.0-alpha06"
37+
api "androidx.core:core:1.3.2"
38+
api "androidx.biometric:biometric:1.1.0"
39+
api "androidx.fragment:fragment:1.3.2"
4040
androidTestImplementation 'androidx.test:runner:1.2.0'
4141
androidTestImplementation 'androidx.test:rules:1.2.0'
4242
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'

‎packages/local_auth/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: local_auth
22
description: Flutter plugin for Android and iOS devices to allow local
33
authentication via fingerprint, touch ID, face ID, passcode, pin, or pattern.
44
homepage: https://github.com/flutter/plugins/tree/master/packages/local_auth
5-
version: 1.1.1
5+
version: 1.1.2
66

77
flutter:
88
plugin:

0 commit comments

Comments
 (0)
Please sign in to comment.