Questions tagged «face-id»

3
我们可以在Android设备的本机反应中获得face-id吗?
我在我的应用程序中实施了生物识别技术以进行身份​​验证。我正在使用本机生物识别技术。每件事都运转良好,只是卡住了。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。预先感谢您的帮助。

1
如何在React-Native中检查对Touch ID,Face ID,密码和模式锁定的支持
我已经实施了 react-native-fingerprint-scanner,正在使用Touch Id。 现在我想添加身份验证 为两个平台的Touch ID,Face ID和Passcode 有什么方法可以检查您的设备是否支持。另外,我试过使用,react-native-touch-id但不是Face Id android。 有什么方法可以在两个平台(iOS / Android)上实现这一目标吗? 参考:链接
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.