Setup In-App Surveys
Show survey if available
SurveysKmp.showSurveyIfAvailable()Show a specific survey
SurveysKmp.showSurvey(token = "SURVEY_TOKEN")Check if user has responded
scope.launch {
SurveysKmp.hasRespondedToSurvey("SURVEY_TOKEN").collect { hasResponded ->
if (!hasResponded) SurveysKmp.showSurvey("SURVEY_TOKEN")
}
}Get available surveys
Last updated