mirror of
https://github.com/bitwarden/android.git
synced 2024-11-24 10:25:57 +03:00
Add biometrics library (#794)
This commit is contained in:
parent
26335bf217
commit
555ff1dcd2
4 changed files with 15 additions and 6 deletions
|
@ -72,6 +72,11 @@ The following is a list of all third-party dependencies included as part of the
|
|||
- Purpose: Allows access to tools for building inline autofill UI.
|
||||
- License: Apache 2.0
|
||||
|
||||
- **AndroidX Biometrics**
|
||||
- https://developer.android.com/jetpack/androidx/releases/biometric
|
||||
- Purpose: Authenticate with biometrics or device credentials.
|
||||
- License: Apache 2.0
|
||||
|
||||
- **AndroidX Browser**
|
||||
- https://developer.android.com/jetpack/androidx/releases/browser
|
||||
- Purpose: Displays webpages with the user's default browser.
|
||||
|
|
|
@ -151,6 +151,7 @@ dependencies {
|
|||
implementation(libs.androidx.appcompat)
|
||||
implementation(libs.androidx.autofill)
|
||||
implementation(libs.androidx.browser)
|
||||
implementation(libs.androidx.biometrics)
|
||||
implementation(libs.androidx.camera.camera2)
|
||||
implementation(libs.androidx.camera.lifecycle)
|
||||
implementation(libs.androidx.camera.view)
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
android:required="false" />
|
||||
|
||||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
||||
<uses-permission android:name="android.permission.USE_BIOMETRIC" />
|
||||
<uses-permission android:name="android.permission.CAMERA" />
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
|
||||
|
|
|
@ -10,6 +10,7 @@ minSdk = "28"
|
|||
accompanist = "0.30.1"
|
||||
androidGradlePlugin = "8.2.0"
|
||||
androidxActivity = "1.8.2"
|
||||
androidXBiometrics = "1.2.0-alpha05"
|
||||
androidxBrowser = "1.7.0"
|
||||
androidxCamera = "1.3.1"
|
||||
androidxComposeBom = "2023.10.01"
|
||||
|
@ -57,6 +58,7 @@ zxing = "3.5.2"
|
|||
androidx-activity-compose = { module = "androidx.activity:activity-compose", version.ref = "androidxActivity" }
|
||||
androidx-appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "androidXAppCompat" }
|
||||
androidx-autofill = { group = "androidx.autofill", name = "autofill", version.ref = "androdixAutofill" }
|
||||
androidx-biometrics = { group = "androidx.biometric", name = "biometric", version.ref = "androidXBiometrics" }
|
||||
androidx-browser = { module = "androidx.browser:browser", version.ref = "androidxBrowser" }
|
||||
androidx-camera-camera2 = { module = "androidx.camera:camera-camera2", version.ref = "androidxCamera" }
|
||||
androidx-camera-lifecycle = { group = "androidx.camera", name = "camera-lifecycle", version.ref = "androidxCamera" }
|
||||
|
|
Loading…
Reference in a new issue