Skip to content

Releases: auth0/Auth0.Android

2.7.0

25 Feb 13:16
Compare
Choose a tag to compare

Full Changelog

Changed

2.6.0

07 Dec 15:38
Compare
Choose a tag to compare

Full Changelog

Changed

  • Improve authenticated flow of the Credentials Manager #519 (lbalmaceda)

2.5.1

09 Nov 20:36
Compare
Choose a tag to compare

Full Changelog

Security

2.5.0

11 Oct 13:52
16501c9
Compare
Choose a tag to compare

Full Changelog

Added

  • Credentials Managers: renew tokens with extra parameters #514 (lustikuss)

Changed

Fixed

2.4.0

20 Jul 11:04
b58dcba
Compare
Choose a tag to compare

Full Changelog

Added

  • Add federated option to the Web Auth Logout [SDK-2165] #501 (lbalmaceda)
  • Add support for Recovery Code multi-factor authentication #500 (lbalmaceda)
  • Add support for OOB multi-factor authentication [SDK-2657] #498 (lbalmaceda)

Fixed

  • Fix MFA Challenge authentication and prevent sending the scope again #504 (lbalmaceda)
  • Fix bug parsing content type headers #503 (lbalmaceda)
  • Catch IOExceptions from response body InputStream #486 (jeffdgr8)

2.3.0

02 Jul 14:59
8f35cd5
Compare
Choose a tag to compare

Full Changelog

Changed

  • Explicitly specify charset, don't rely on default charset #491 (Marcono1234)
  • Disable share button in Chrome custom tabs #489 (latsson)
  • Rewrite ThreadSwitcher class so that it is not tied to Looper #482 (alvindizon)

Fixed

  • Improve access_denied error handling by using the description #494 (lbalmaceda)

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