diff --git a/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/onboarding/WhatsNewView.kt b/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/onboarding/WhatsNewView.kt index 2de63005e1..0b0ce0338e 100644 --- a/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/onboarding/WhatsNewView.kt +++ b/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/onboarding/WhatsNewView.kt @@ -957,12 +957,13 @@ fun shouldShowWhatsNew(m: ChatModel): Boolean { } private const val WEFUNDER_URL = "https://wefunder.com/simplexchat" +private val investCountries = setOf("US", "AM") @Composable private fun InvestInSimpleXChatView() { if (platform.androidIsPlayStoreBuild) { LaunchedEffect(Unit) { if (androidPlayStoreCountry.value == null) platform.androidLoadPlayStoreCountry() } - if (androidPlayStoreCountry.value != "US") return + if (androidPlayStoreCountry.value !in investCountries) return } val uriHandler = LocalUriHandler.current Row(horizontalArrangement = Arrangement.spacedBy(8.dp), modifier = Modifier.padding(bottom = 12.dp)) {