我正在我的应用程序中实现生物识别以进行身份验证。我正在使用 react-native 生物识别技术。每件事情都很好,只有一个卡住了。Face-id 在 Android 中不起作用。我做了很多谷歌搜索,但找不到令人满意的答案。甚至可以在 Android 中使用 face-id 吗?
Biometrics.isSensorAvailable()
.then((biometryType) => {
if (biometryType === Biometrics.TouchID) {
console.log('TouchID is supported')
} else if (biometryType === Biometrics.FaceID) {
console.log('FaceID is supported')
} else {
console.log('Biometrics not supported')
}
})
即使我在手机中使用 FaceId,这总是会返回给我 TouchId。提前感谢您的帮助。