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
- Fix typo by @itaihanski in #79
- chore(deps): update plugin com.android.library to v8.2.2 by @descope in #80
- chore(deps): update gradle/gradle-build-action action to v2.12.0 by @descope in #81
- Replace config and projectId setters with setup function by @itaihanski in #82
- Support sign up in or both for oauth by @itaihanski in #83
- Bump version to 0.10.0 by @itaihanski in #84
Full Changelog: 0.9.9...0.10.0