For the complete documentation index, see llms.txt. This page is also available as Markdown.

Welcome Message

Pick the welcome message mode for live or beta builds of your KMP app, and show the welcome flow programmatically at a moment that you choose.

Welcome message mode

Set whether users see a welcome message and which variant (e.g. for live vs beta apps):

Kotlin
LuciqKmp.setWelcomeMessageMode(WelcomeMessageMode.Live)   // production
LuciqKmp.setWelcomeMessageMode(WelcomeMessageMode.Beta)   // beta testers
LuciqKmp.setWelcomeMessageMode(WelcomeMessageMode.Disabled)

Show welcome message

Programmatically show the welcome message with a given mode:

Kotlin
LuciqKmp.showWelcomeMessage(WelcomeMessageMode.Beta)

Use this when you want to present the welcome flow at a specific moment (e.g. first launch or from a “How to report” button).

Last updated