From ac2f7cc5f798d538b24eb94dacdce6b7d2aeb12e Mon Sep 17 00:00:00 2001 From: shum Date: Tue, 11 Aug 2026 06:33:50 +0000 Subject: [PATCH] temp --- .../chat/simplex/common/views/onboarding/WhatsNewView.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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)) {