handle

fun handle(uri: Uri?): Boolean

Handles OAuth/SSO deep link callbacks.

Call this method from your Activity when receiving a deep link callback from an OAuth or SSO provider.

Return

true if the URI was handled, false otherwise.

Example usage:

// In your Activity's onCreate or onNewIntent
clerk.auth.handle(intent.data)

Parameters

uri

The deep link URI received from the callback.