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.
Last updated
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.
Set whether users see a welcome message and which variant (e.g. for live vs beta apps):
LuciqKmp.setWelcomeMessageMode(WelcomeMessageMode.Live) // production
LuciqKmp.setWelcomeMessageMode(WelcomeMessageMode.Beta) // beta testers
LuciqKmp.setWelcomeMessageMode(WelcomeMessageMode.Disabled)Programmatically show the welcome message with a given mode:
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