Setup App Ratings & Reviews

App ratings and reviews with Luciq KMP (surveys and store redirect).

Use In-App Surveys to show rating surveys and optionally redirect users to the store. Configure surveys in the Luciq dashboard and use the Surveys API to show them.

Show survey if available

Surveys are targeted from the dashboard. To show one when available:

Kotlin
SurveysKmp.showSurveyIfAvailable()

Show a specific survey

If you have the survey token:

Kotlin
SurveysKmp.showSurvey(token = "YOUR_SURVEY_TOKEN")

App Store URL (iOS)

For app rating surveys on iOS, set the App Store URL so the “Rate us” action opens the correct page:

Kotlin
SurveysKmp.setAppStoreURL("https://apps.apple.com/app/id123456789")

This is a no-op on Android.

Redirect to store

Notify Luciq when the app is about to redirect the user to the store (e.g. after a rating):

Kotlin
LuciqKmp.willRedirectToStore()

See Setup In-App Surveys for more options (welcome screen, callbacks, auto-show).

Last updated