Giter VIP home page Giter VIP logo

reprint's Introduction

Reprint

Release License API Javadoc core Javadoc reactive

A simple, unified fingerprint authentication library for Android with ReactiveX extensions.

Fingerprint authentication on Android is a mess. This library unifies the different available APIs, deals with the idiosyncrasies of each, and adds an optional reactive interface.

Installation

Reprint is distributed with jitpack and split up into several libraries, so you can include only the parts that you use.

First, add jitpack to your gradle repositories.

repositories {
    maven { url "https://jitpack.io" }
}

Then add the core library and optionally the Samsung Pass interface and the ReactiveX interface.

dependencies {
   compile 'com.github.ajalt.reprint:core:2.0.0@aar' // required, supports marshmallow devices
   compile 'com.github.ajalt.reprint:reprint_spass:2.0.0@aar' // optional: support for pre-marshmallow Samsung devices
   compile 'com.github.ajalt.reprint:reactive:2.0.0@aar' // optional: the ReactiveX interface
}

Permissions

Reprint requires the following permissions be declared in your AndroidManifest.xml

<!-- Marshmallow fingerprint permission-->
<uses-permission android:name="android.permission.USE_FINGERPRINT"/>

<!-- Samsung fingerprint permission, only reqiured if you include the spass module -->
<uses-permission android:name="com.samsung.android.providers.context.permission.WRITE_USE_APP_FEATURE_SURVEY"/>

Usage

See the sample app for a complete example.

In your Application.onCreate, initialize Reprint with Reprint.initialize(this). This will load the Marshmallow module, and the Spass module if you included it.

Then, anywhere in your code, you can call Reprint.authenticate to turn on the fingerprint reader and listen for a fingerprint. You can call Reprint.cancelAuthentication to turn the reader off before it finishes normally.

There are two ways to be notified of authentication results: traditional callback, and a ReactiveX Observable..

Callbacks

Pass an AuthenticationListener to authenticate, and it's callbacks will be called with results. The onFailure callback will be called repeatedly until the sensor is disabled or a fingerprint is authenticated correcty, at which point onSuccess will be called.

Reprint.authenticate(new AuthenticationListener() {
    @Override
    public void onSuccess(int moduleTag) {
        showSuccess();
    }

    @Override
    public void onFailure(AuthenticationFailureReason failureReason, boolean fatal,
                          @Nullable CharSequence errorMessage, int moduleTag, int errorCode) {
        showError(failureReason, fatal, errorMessage, errorCode);
    }
});

The failureReason is an enum value with general categories of reason that the authentication failed. This is useful for displaying help messages in your UI.

The fatal parameter is true if the sensor has stopped and cannot be restarted, such as when it's locked out. It's false if the sensor is still running, such as when a finger was moved over the sensor too quickly.

The errorMessage is a string that, if it's not null, will contain some help text provided by the underlying SDK about the failure. You should show this text to the user. The underlying SDK might not provide help text, in which case you should show your own message.

The moduleTag and errorCode can be used to find out the SDK-specific reason for the failure.

ReactiveX interface

If you include the reactive reprint library, you can be notified of authentication results through an Observable by calling RxReprint.authenticate. In this case, the subscriber's onNext will be called at most once, after a successful authentication. When the onError method is called, the sensor will already be stopped.

RxReprint.authenticate().subscribe(::showSuccess, ::showError);

You probably want to use the retry operator to restart the sensor when a non-fatal error occurs.

RxReprint.authenticate()
         .doOnError(::showHelp)
         .retry((count, t) -> {
            AuthenticationFailure e = (AuthenticationFailure) t;
            return !e.fatal || e.failureReason == AuthenticationFailureReason.TIMEOUT && count < 5;
         })
         .subscribe(::showSuccess, ::showError);

One advantage that this interface has is that when the subscriber unsubscribes, the authentication request is automatically canceled. So you could, for example, use the RxLifecycle library to bind the observable, and the authentication will be canceled when your activity pauses.

License

Copyright (c) 2015 AJ Alt


Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.