Add message with link to play store
This commit is contained in:
parent
d74fd134a5
commit
fdcbafc994
1 changed files with 20 additions and 3 deletions
|
@ -2,11 +2,28 @@ import io.github.wulkanowy.messages.pojo.*
|
||||||
|
|
||||||
val messages = listOf(
|
val messages = listOf(
|
||||||
Message(
|
Message(
|
||||||
id = 42,
|
id = 43,
|
||||||
title = "Ważny komunikat",
|
title = "Aktualizacja aplikacji",
|
||||||
content = "Pracujemy nad przywróceniem logowania i odświeżania danych w apce. Niedługo pojawi się aktualizacja",
|
content = "Aktualizacja naprawiająca ostatnie problemy powinna być u was już dostępna",
|
||||||
priority = MessagePriority.MEDIUM,
|
priority = MessagePriority.MEDIUM,
|
||||||
targetRegisterHost = RegisterAddress.VULCAN.url,
|
targetRegisterHost = RegisterAddress.VULCAN.url,
|
||||||
|
destinationUrl = "https://play.google.com/store/apps/details?id=io.github.wulkanowy&utm_source=message",
|
||||||
|
targetFlavor = AppFlavor.PLAY,
|
||||||
|
types = listOf(
|
||||||
|
MessageType.DASHBOARD_MESSAGE,
|
||||||
|
MessageType.LOGIN_MESSAGE,
|
||||||
|
),
|
||||||
|
versionMax = 137,
|
||||||
|
isDismissible = false,
|
||||||
|
isVisible = true,
|
||||||
|
),
|
||||||
|
Message(
|
||||||
|
id = 42,
|
||||||
|
title = "Ważny komunikat",
|
||||||
|
content = "Aktualizacja naprawiająca ostatnie problemy powinna być u was juz dostępna",
|
||||||
|
priority = MessagePriority.MEDIUM,
|
||||||
|
targetRegisterHost = RegisterAddress.VULCAN.url,
|
||||||
|
targetFlavor = AppFlavor.HMS,
|
||||||
types = listOf(
|
types = listOf(
|
||||||
MessageType.DASHBOARD_MESSAGE,
|
MessageType.DASHBOARD_MESSAGE,
|
||||||
MessageType.LOGIN_MESSAGE,
|
MessageType.LOGIN_MESSAGE,
|
||||||
|
|
Loading…
Reference in a new issue