我在我的应用程序中实施了生物识别技术以进行身份验证。我正在使用本机生物识别技术。每件事都运转良好,只是卡住了。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。预先感谢您的帮助。
您找到解决方案了吗?您是否尝试过生产构建?
—
Pravin S.19年
必须尝试使用
—
Android Player
npm install face-recognition-react-native --save
npm吗?