Android生物识别提示:无法解析符号PromptInfo

iqih9akk  于 2023-04-10  发布在  Android
关注(0)|答案(2)|浏览(186)

当我从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。
我已经遵循了本教程中的所有步骤。

pxq42qpu

pxq42qpu1#

您需要添加此依赖项:

implementation 'androidx.biometric:biometric:1.0.0-rc01'

并确保使用此导入:

import androidx.biometric.BiometricPrompt;

而不是

import android.hardware.biometrics.BiometricPrompt;

更新:对于当前版本检查:https://mvnrepository.com/artifact/androidx.biometric/biometric?repo=google

fhg3lkii

fhg3lkii2#

private BiometricPrompt.PromptInfo promptInfo;
如果导入面临问题,则
在网格文件中添加
implementation“androidx.biometric:biometric:1.1.0”implementation 'androidx.biometric:biometric:1.2.0-alpha05'

相关问题