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

Customizing Survey Behavior

Show or hide the survey welcome screen in your KMP app, and switch auto-show off so your own code decides when a survey appears to the user.

Welcome screen

Show or hide the welcome screen before the survey:

Kotlin
SurveysKmp.setShouldShowWelcomeScreen(true)

Auto-show

When enabled, surveys are shown automatically when they are available and match targeting rules:

Kotlin
SurveysKmp.setAutoShowingEnabled(true)

When disabled, you control when to show surveys (e.g. via SurveysKmp.showSurveyIfAvailable() or SurveysKmp.showSurvey(token)).

Last updated