Can we test Face ID in simulator?

Simulator does not recognise a face but allows you to simulate a matching and non-matching faces, if you’ve enabled Enrolled option from Face ID. Add following code to your view controller and try with Face-ID import LocalAuthentication class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() localAuthentication() } func localAuthentication() -> Void { let laContext … Read more

Android fingerprint API for time attendance app [closed]

No. In fact, the Android Compatibility Definition for Android 6.0 states in the Fingerprint section (7.3.10): MUST NOT enable 3rd-party applications to distinguish between individual fingerprints. Therefore while you could write an app that uses fingerprint as a mechanism to authenticate the user, any registered fingerprint associated with the current user account could be used. … Read more