我找不到BiometricPrompt的支持库来支持较旧的API级别。但他们提到将会有androidX支持库。我找不到...

最佳答案

在这里,您可以找到Androidx Biometric库的official documentation

当前,只需在您的build.gradle文件中添加此依赖项:

dependencies {
    // ...
    implementation 'androidx.biometric:biometric:1.0.0-alpha04'
}

08-18 01:28