Skip to content
This repository has been archived by the owner on Feb 2, 2021. It is now read-only.

Commit

Permalink
Release version 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ajalt committed Apr 29, 2017
1 parent 07018e7 commit cbb5ea8
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 17 deletions.
32 changes: 17 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,8 @@
<img src="resources/banner.png">
</h1>

[![](https://img.shields.io/github/tag/ajalt/reprint.svg?label=maven)](https://jitpack.io/#ajalt/reprint)
[![](http://img.shields.io/:license-apache-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0)
![](https://img.shields.io/badge/API-10%2B-blue.svg)
[![](https://img.shields.io/badge/javadoc-core-blue.svg)](https://jitpack.io/com/github/ajalt/reprint/core/2.9.2/javadoc/)
[![](https://img.shields.io/badge/javadoc-rxjava1-blue.svg)](https://jitpack.io/com/github/ajalt/reprint/rxjava/2.9.2/javadoc/)
[![](https://img.shields.io/badge/javadoc-rxjava2-blue.svg)](https://jitpack.io/com/github/ajalt/reprint/rxjava2/2.9.2/javadoc/)

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

* Eliminates the need to deal with the different available Fingerprint APIs, including Imprint and Samsung Pass.
* Fixes undocumented bugs and idiosyncrasies in the underlying APIs.
Expand Down Expand Up @@ -68,7 +61,7 @@ or some other message of your own based on the `failureReason`. This string will
never be null from a failure, and will be localized into the current locale.

For detail on the other parameters,
[see the Javadocs](https://jitpack.io/com/github/ajalt/reprint/rxjava/2.9.2/javadoc/).
[see the Javadocs](https://jitpack.io/com/github/ajalt/reprint/rxjava/3.1.0/javadoc/).

One advantage that this interface has is that when the subscriber unsubscribes,
the authentication request is automatically canceled. So you could, for example,
Expand All @@ -95,9 +88,17 @@ Reprint.authenticate(new AuthenticationListener() {
});
```

# Documentation

The javadocs for the Reprint modules are available online:

* [Reprint core](https://jitpack.io/com/github/ajalt/reprint/core/3.1.0/javadoc/)
* [RxJava 1 interface](https://jitpack.io/com/github/ajalt/reprint/rxjava/3.1.0/javadoc/)
* [RxJava 2 interface](https://jitpack.io/com/github/ajalt/reprint/rxjava2/3.1.0/javadoc/)

# Installation

Reprint is distributed with [jitpack](https://jitpack.io/) and split up into
Reprint is distributed with [jitpack](https://jitpack.io/#ajalt/reprint) and split up into
several libraries, so you can include only the parts that you use.

First, add Jitpack to your gradle repositories.
Expand All @@ -109,14 +110,15 @@ repositories {
```

Then add the core library and optionally the Samsung Pass interface and the
ReactiveX interface. Reprint provides support for both RxJava 1 and 2.
ReactiveX interface. Reprint provides support for both RxJava 1 and 2; you should
include the module that matches the version of RxJava that you use in your project.

```groovy
dependencies {
compile 'com.github.ajalt.reprint:core:2.9.2@aar' // required: supports marshmallow devices
compile 'com.github.ajalt.reprint:reprint_spass:2.9.2@aar' // optional: support for pre-marshmallow Samsung devices
compile 'com.github.ajalt.reprint:rxjava:2.9.2@aar' // optional: the RxJava 1 interface
compile 'com.github.ajalt.reprint:rxjava2:2.9.2@aar' // optional: the RxJava 2 interface
compile 'com.github.ajalt.reprint:core:3.1.0@aar' // required: supports marshmallow devices
compile 'com.github.ajalt.reprint:reprint_spass:3.1.0@aar' // optional: support for pre-marshmallow Samsung devices
compile 'com.github.ajalt.reprint:rxjava:3.1.0@aar' // optional: the RxJava 1 interface
compile 'com.github.ajalt.reprint:rxjava2:3.1.0@aar' // optional: the RxJava 2 interface
}
```

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
VERSION_NAME=2.9.2
VERSION_CODE=23
VERSION_NAME=3.1.0
VERSION_CODE=25
GROUP=com.github.ajalt.reprint

0 comments on commit cbb5ea8

Please sign in to comment.