Deeplink Support
Provide a matchup invite deeplink provider
LucraClient().setMatchupInviteDeeplinkProvider
LucraClient().setMatchupInviteDeeplinkProviderLucraClient().setMatchupInviteDeeplinkProvider { matchupId ->
// Embed the matchup ID in a url that your app can consume
Uri.Builder()
.scheme("myapp")
.authority("lucra")
.appendPath("matchup")
.appendQueryParameter("id", matchupId)
.build()
.toString()
}Launching the matchup from a deeplink
Deprecated transformer API
Last updated
