Skip to content

2.0.0

Compare
Choose a tag to compare
@lbalmaceda lbalmaceda released this 11 Feb 17:59
· 396 commits to main since this release
02bda7b

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.