Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 1.99 KB

README.md

File metadata and controls

23 lines (19 loc) · 1.99 KB

Biometric Prompt Demo

Nikola Cucakovic, November 2019

Overview

The purpose of this project is to showcase some of the basic features availble in the BiometricManager and BiometricPrompt classes introduced in Android 10. These biometric handlers aim to:

  1. Simplify the complexity of integrating biometric authentication
  2. Superseed exsisting methods of integrating biometric authentication, such as the FingerprintManager for fingerprint biometrics
  3. Create a single API for developers to interface with any biometric type, whether it is facial recognition or fingerprint. Notably, this will probably be expanded to include other biometric types in the future such as iris etc.
  4. Abstract biometric idiosyncrasies from developers

This code is purely for demonstration purposes and is not complete.

Useful Links / Further Reading