1

I Could not find the support library for BiometricPrompt to support older API levels. But they mentioned there will be androidX support library. I could not find any...

Gabriele Mariotti
  • 320,139
  • 94
  • 887
  • 841
Gopi S
  • 523
  • 1
  • 5
  • 17
  • This question is already asked, check https://stackoverflow.com/questions/51558350/android-biometricprompt-compat-library/51813617#51813617 – Nikhil Aug 22 '18 at 14:09

2 Answers2

2

Here you can find the official documentation of the Androidx Biometric library.

Currently just add this dependency in your build.gradle file:

dependencies {
    // ...
    implementation 'androidx.biometric:biometric:1.0.0-alpha04'
}
Gabriele Mariotti
  • 320,139
  • 94
  • 887
  • 841
0

I find BiometricPrompt support library here

  • Actually, that is a third party compat library. But I was searching for official compat library from android. – Gopi S Aug 10 '18 at 14:35