@@ -61,7 +61,7 @@ or some other message of your own based on the `failureReason`. This string will
6161never be null from a failure, and will be localized into the current locale.
6262
6363For detail on the other parameters,
64- [ see the Javadocs] ( https://jitpack.io/com/github/ajalt/reprint/rxjava/3.2.1 /javadoc/ ) .
64+ [ see the Javadocs] ( https://jitpack.io/com/github/ajalt/reprint/rxjava/3.3.0 /javadoc/ ) .
6565
6666One advantage that this interface has is that when the subscriber unsubscribes,
6767the authentication request is automatically canceled. So you could, for example,
@@ -92,9 +92,9 @@ Reprint.authenticate(new AuthenticationListener() {
9292
9393The javadocs for the Reprint modules are available online:
9494
95- * [ Reprint core] ( https://jitpack.io/com/github/ajalt/reprint/core/3.2.1 /javadoc/index.html?com/github/ajalt/reprint/core/Reprint.html )
96- * [ RxJava 1 interface] ( https://jitpack.io/com/github/ajalt/reprint/rxjava/3.2.1 /javadoc/com/github/ajalt/reprint/rxjava/RxReprint.html )
97- * [ RxJava 2 interface] ( https://jitpack.io/com/github/ajalt/reprint/rxjava2/3.2.1 /javadoc/com/github/ajalt/reprint/rxjava2/RxReprint.html )
95+ * [ Reprint core] ( https://jitpack.io/com/github/ajalt/reprint/core/3.3.0 /javadoc/index.html?com/github/ajalt/reprint/core/Reprint.html )
96+ * [ RxJava 1 interface] ( https://jitpack.io/com/github/ajalt/reprint/rxjava/3.3.0 /javadoc/com/github/ajalt/reprint/rxjava/RxReprint.html )
97+ * [ RxJava 2 interface] ( https://jitpack.io/com/github/ajalt/reprint/rxjava2/3.3.0 /javadoc/com/github/ajalt/reprint/rxjava2/RxReprint.html )
9898
9999# Installation
100100
@@ -115,10 +115,10 @@ include the module that matches the version of RxJava that you use in your proje
115115
116116``` groovy
117117dependencies {
118- compile 'com.github.ajalt.reprint:core:3.2.1 @aar' // required: supports marshmallow devices
119- compile 'com.github.ajalt.reprint:reprint_spass:3.2.1 @aar' // optional: support for pre-marshmallow Samsung devices
120- compile 'com.github.ajalt.reprint:rxjava:3.2.1 @aar' // optional: the RxJava 1 interface
121- compile 'com.github.ajalt.reprint:rxjava2:3.2.1 @aar' // optional: the RxJava 2 interface
118+ compile 'com.github.ajalt.reprint:core:3.3.0 @aar' // required: supports marshmallow devices
119+ compile 'com.github.ajalt.reprint:reprint_spass:3.3.0 @aar' // optional: deprecated support for pre-marshmallow Samsung devices
120+ compile 'com.github.ajalt.reprint:rxjava:3.3.0 @aar' // optional: the RxJava 1 interface
121+ compile 'com.github.ajalt.reprint:rxjava2:3.3.0 @aar' // optional: the RxJava 2 interface
122122}
123123```
124124
@@ -136,9 +136,16 @@ will be included automatically.
136136<uses-permission android : name =" com.samsung.android.providers.context.permission.WRITE_USE_APP_FEATURE_SURVEY" />
137137```
138138
139+ ### Spass SDK deprecation
140+
141+ Samsung has deprecated the Spass SDK in favor of the standard Android APIs. Although Reprint still provides
142+ a module that uses the the Spass SDK if the standard APIs aren't available, you should be aware that the Spass
143+ SDK has a [ known bug] ( https://github.com/ajalt/reprint/issues/6 ) . If you don't need fingerprint support on
144+ devices running KitKat, you should not include the ` reprint_spass ` module.
145+
139146# License
140147
141- Copyright 2015-2017 AJ Alt
148+ Copyright 2015-2018 AJ Alt
142149
143150 Licensed under the Apache License, Version 2.0 (the "License");
144151 you may not use this file except in compliance with the License.
0 commit comments