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

Commit 3d9a86c

Browse files
committed
Release version 3.3.0
1 parent e4e1bbb commit 3d9a86c

File tree

2 files changed

+18
-11
lines changed

2 files changed

+18
-11
lines changed

README.md

100755100644
Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ or some other message of your own based on the `failureReason`. This string will
6161
never be null from a failure, and will be localized into the current locale.
6262

6363
For 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

6666
One advantage that this interface has is that when the subscriber unsubscribes,
6767
the authentication request is automatically canceled. So you could, for example,
@@ -92,9 +92,9 @@ Reprint.authenticate(new AuthenticationListener() {
9292

9393
The 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
117117
dependencies {
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.

gradle.properties

100755100644
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
VERSION_NAME=3.2.1
2-
VERSION_CODE=27
1+
VERSION_NAME=3.3.0
2+
VERSION_CODE=28
33
GROUP=com.github.ajalt.reprint
44
android.useAndroidX=true
55
android.enableJetifier=true

0 commit comments

Comments
 (0)