github descope/descope-kotlin 0.10.0

4 months ago

Breaking Changes

The Descope Kotlin SDK initialization has changed in a breaking way: it no longer relies on setters, but now relies on a new setup function, to be called in the app initialization section (onCreate).

Change this (previous versions):

override fun onCreate() {
    Descope.projectId = "<Your-Project-Id>"
}

Into this:

override fun onCreate() {
    Descope.setup(this, projectId = "<Your-Project-Id>")
}

See the README or the Descope object for more details

What's Changed

Full Changelog: 0.9.9...0.10.0

Don't miss a new descope-kotlin release

NewReleases is sending notifications on new releases.