Skip to content

Releases: auth0/Auth0.Android

2.2.0

21 Apr 11:04
29623f6
Compare
Choose a tag to compare

Full Changelog

Added

Fixed

2.1.0

26 Mar 15:41
af3eb6f
Compare
Choose a tag to compare

Full Changelog

Added

Changed

  • Migrate to newer OSS Plugin with support for Sonatype #469 (lbalmaceda)

Fixed

2.0.0

11 Feb 17:59
02bda7b
Compare
Choose a tag to compare

This is a major release and contains breaking changes!

Please see the migration guide document. The full changelog from version 1 to version 2 is here.

New requirements

v2 requires Android API version 21 or later and Java 8+. Update your build.gradle file with the following:

android {
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
    kotlinOptions {
        jvmTarget = '1.8'
    }
}

Main features

  • Supports exclusively the OpenID Connect authentication pipeline from Auth0.
  • Uses AndroidX dependencies, and drops the use of the Jetifier plugin.
  • Reworked networking stack. Offers a customizable Networking Client.

See the changelog entries for additional details.

2.0.0-beta.0

11 Feb 18:00
9c6ea72
Compare
Choose a tag to compare
2.0.0-beta.0 Pre-release
Pre-release

2.0.0-beta.0 (2021-01-19)

Full Changelog

Changed

Deprecated

Removed

Fixed

Breaking changes

1.30.0

05 Feb 21:31
8d19e2a
Compare
Choose a tag to compare

Full Changelog

Added

  • Add custom headers to social token request [SDK-2080] #351 (TLFilip)

Deprecated

1.29.2

11 Nov 21:10
07be98e
Compare
Choose a tag to compare

Full Changelog

Fixed

  • Refactor: Move passwordless "invalid credentials" errors #373 (lbalmaceda)

1.29.1

10 Nov 20:59
Compare
Choose a tag to compare

Full Changelog

Fixed

  • Handle API response for mobile OTP code incorrect. #371 (nicbell)

1.29.0

04 Nov 15:27
Compare
Choose a tag to compare

Full Changelog

Added

  • SecureCredentialsManager: Allow to pass scope and minTTL #369 (lbalmaceda)
  • CredentialsManager: Allow to pass scope and minTTL #363 (lbalmaceda)

1.28.0

02 Nov 21:50
01c64d3
Compare
Choose a tag to compare

1.28.0 (2020-10-13)

Full Changelog

Added

  • Accept a custom clock instance in both Credentials Managers [SDK-1973] #358 (lbalmaceda)

Fixed

  • Catch a gson JsonIOException when parsing SimpleRequest response [SDK-1981] #355 (quibi-jlk)

1.27.0

25 Sep 15:34
Compare
Choose a tag to compare

Full Changelog

Added