android-fingerprint-authentication


Source link: https://github.com/multidots/android-fingerprint-authentication

Fingerprint Authentication Helper

Finger print authentication helper is an android library to simplify the authentication with finger print process. This will provide a common platform for finger print authentication for all the android versions.

Screenshot

Dependency

  • Add the dependencies to your app level build.gradle file:
dependencies {

  compile 'com.multidots:fingerprint-auth:1.0.1' 
}
 

Usage

  • Inside your activity or fragment create FingerPrintAuthHelper instance and call startAuth() in the onResume() to enable finger print scanning.
@Override protected void onCreate(Bundle savedInstanceState) {

  mFingerPrintAuthHelper = FingerPrintAuthHelper.getHelper(this, this);

  //....

//....

}

  @Override protected void onResume() {

  super.onResume();

  //start finger print authentication
  mFingerPrintAuthHelper.startAuth();
 
}
 
  • Don't forget to disable the finger print scanner in onPause() of your activity/fragment.
@Override protected void onPause() {

  super.onPause();

  mFingerPrintAuthHelper.stopAuth();
 
}
 

** Callbacks **

  • You need to implement FingerPrintAuthCallback in your activity/fragment to receive the callbacks from the helper class.
@Override public void onNoFingerPrintHardwareFound() {

  //Device does not have finger print scanner. 
}
  @Override public void onNoFingerPrintRegistered() {

  //There are no finger prints registered on this device. 
}
  @Override public void onBelowMarshmallow() {

  //Device running below API 23 version of android that does not support finger print authentication. 
}
  @Override public void onAuthSuccess(FingerprintManager.CryptoObject cryptoObject) {

  //Authentication sucessful. 
}
  @Override public void onAuthFailed(int errorCode, String errorMessage) {

  switch (errorCode) {

 //Parse the error code for recoverable/non recoverable error.

case AuthErrorCodes.CANNOT_RECOGNIZE_ERROR:

 //Cannot recognize the fingerprint scanned.

 break;

case AuthErrorCodes.NON_RECOVERABLE_ERROR:

 //This is not recoverable error. Try other options for user authentication. like pin, password.

 break;

case AuthErrorCodes.RECOVERABLE_ERROR:

 //Any recoverable error. Display message to the user.

 break;
  
}
 
}
 

Demo application

Here is the link to the demo application.

Questions?

  • If you have some problems with using this library or something doesn't work correctly, feel free to open an issue.

How to contribute?

Simple 3 step to contribute into this repo:

  1. Fork the project.
  2. Make required changes and commit.
  3. Generate pull request. Mention all the required description regarding changes you made.

Medium Article

Resources

A loader that measures up Material Design.

Android fillable progress view working with an SVG Path. This is a nice option too if you want to create an interesting brand logo for your app.

Amaze File Manager source code.

Animated arc based charting library for Android.

This project provides a simple web API and view for Android Debug Bridge (adb). Free your imagination, use it as you want.

A demo of Map View as in Field Trip app with smooth animations.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes