Skip to content

0.10.0

Latest
Compare
Choose a tag to compare
@itaihanski itaihanski released this 21 Feb 08:47
· 43 commits to main since this release
836607d

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