Whats new feature
Every update is an opportunity to keep your users engaged in your project. People appreciate apps that are actively maintained and are more likely to pay for regularly updated products.
Presenting the List
// Define update details for build 10
private val updateBuild10 = listOf(
FeatureItemData(
imageVector = Icons.Rounded.Home,
iconTint = Color.White,
iconBackgroundColor = Color(0XFFd32727),
title = "New feature 1",
text = "We've introduced this exciting new feature. You'll find it amazing."
),
// ... More features for this build
)
override suspend fun whatsNewFor(build: String): List<FeatureItemData> {
// Return the updates for the specified build
return when (build) {
"10" -> updateBuild10
else -> emptyList()
}
}If You Don’t Want to Present Updates
Hiding the ‘What’s New’ Screen
Show the Paywall on Click the Continue Button
Last updated