当我从this www.example.com教程中复制以下代码时developer.android.com,有关在Android应用程序中添加生物识别身份验证:
BiometricPrompt.PromptInfo promptInfo =
new BiometricPrompt.PromptInfo.Builder()
.setTitle("Biometric login for my app")
.setSubtitle("Log in using your biometric credential")
.setNegativeButtonText("Cancel")
.build();
无法识别PromptInfo。
我已经遵循了本教程中的所有步骤。
2条答案
按热度按时间pxq42qpu1#
您需要添加此依赖项:
并确保使用此导入:
而不是
更新:对于当前版本检查:https://mvnrepository.com/artifact/androidx.biometric/biometric?repo=google
fhg3lkii2#
private BiometricPrompt.PromptInfo promptInfo;
如果导入面临问题,则
在网格文件中添加
implementation“androidx.biometric:biometric:1.1.0”implementation 'androidx.biometric:biometric:1.2.0-alpha05'