Skip to content

Releases: diamirio/BiometricAuth

v1.4.0

09 May 20:59

Choose a tag to compare

  • Moves artifacts from jcenter to maven.tailored-apps.com
  • Changes artifact name from com.tailoredapps:biometricauth to com.tailoredapps:biometricauth-rxjava2
  • Creates a new artifact com.tailoredapps:biometricauth-rxjava3 which uses RxJava3 instead of RxJava2

v1.3.1

08 Sep 16:51

Choose a tag to compare

Fixes duplicated uses-permission entries in the AndroidManifest (#15). Thanks to @nilsjr!

v1.3.0

02 Sep 15:15

Choose a tag to compare

  • #13 Adds the possibility to use the androidx biometric prompt api (wrapped in the BiometricAuth RxJava interface). Use BiometricAuth.create(activity, useAndroidXBiometricPrompt = true) if you want to use the androidx implementation.
  • #14 Changes the activity parameter type of BiometricAuth.create to FragmentActivity (which is the parent class of `AppCompatActivity, which it was before)

With those changes v1.3.0 is still binary compatible with v1.2.0.

v1.2.0

04 May 18:07

Choose a tag to compare

Use androidx instead of support-library dependencies (Issue: #11 / PR: #12).
Thanks to @G00fY2 for the contribution!

v1.1.5

28 Oct 19:04

Choose a tag to compare

Define manifest permissions depending on the api level (see #10, thanks to @G00fY2)

v1.1.4

30 Sep 13:53

Choose a tag to compare

  • Fix exposed style to fix marshmallow cancel button background color.
    This is now possible using e.g.:
<style name="BiometricCancelButtonStyle" parent="Widget.AppCompat.Button.Borderless">
    <item name="colorAccent">#FFFFFF</item>
    <item name="colorPrimary">#FFFFFF</item>
</style>

v1.1.3

27 Sep 09:53

Choose a tag to compare

  • Remove rxkotlin dependency from library, add rxandroid dependency in pom.xml (see #7)

v1.1.2

19 Sep 19:37

Choose a tag to compare

  • Fix error when help / errorString is null (see #6)
  • Update dependencies (RxJava, RxKotlin, Kotlin, ...)

v1.1.1

06 Jun 16:35

Choose a tag to compare

  • Fix error when using a CryptoObject on pre-Pie-devices (see #3)
  • Include dependent libraries in pom xml

v1.1.0

15 Feb 18:19

Choose a tag to compare

  • Update RxJava dependency (from 2.2.2 -> 2.2.6)
  • Update Kotlin dependency (from 1.2.71 -> 1.3.21)
  • Add possibility to add a CryptoObject to the authentication-request (#2)