Book Image

Android 6 Essentials

By : Yossi Elkrief
Book Image

Android 6 Essentials

By: Yossi Elkrief

Overview of this book

Android 6 is the latest and greatest version of the Android operating system, and comes packed with cutting edge new features for you to harness for the benefit of building better applications. This step-by-step guide will take you through the basics of the Android Marshmallow permissions model and beyond into other crucial areas such as the Audio,Video,Camera API and Android’s at work features. Learn how to create, deploy, and manage Android applications with Marshmallow’s API and the latest functionalities. The combination of instructions and real-world examples will make your application deployment and testing a breeze.
Table of Contents (16 chapters)
Android 6 Essentials
Credits
About the Author
Acknowledgments
About the Reviewer
www.PacktPub.com
Preface
Index

The Fingerprint authentication API


Android Marshmallow now allows us, the developers, to authenticate users with their fingerprint scans when using such authentication scanners on supported devices.

The Fingerprint API was added to Android Marshmallow via a whole new package:

android.hardware.fingerprint

The package contains four classes:

  • FingerprintManager

  • FingerprintManager.AuthenticationCallback

  • FingerprintManager.AuthenticationResult

  • FingerprintManager.CryptoObject

Each class has a specific role in our fingerprint authentication process.

How do we use fingerprint authentication?

The preceding four classes of the android.hardware.fingerprint package can be explained in the following manner:

  • FingerprintManager: Manage access to fingerprint hardware

  • FingerprintManager.AuthenticationCallback: Callback used in the auth process

  • FingerprintManager.AuthenticationResult: Result container for auth process

  • FingerprintManager.CryptoObject: Specific Crypto object to use with FingerprintManager

Say...