Allow sepa/ideal flags to hot-swap to prevent stale values during first launch.

This commit is contained in:
Alex Hart
2026-09-02 16:11:22 -03:00
parent 3b2bf29ba0
commit 0aaa921833
@@ -1016,14 +1016,14 @@ object RemoteConfig {
/** Whether or not SEPA debit payments for donations are enabled. */
val sepaDebitDonations: Boolean by remoteBoolean(
key = "android.sepa.debit.donations.5",
defaultValue = false,
hotSwappable = false
defaultValue = true,
hotSwappable = true
)
val idealDonations: Boolean by remoteBoolean(
key = "android.ideal.donations.5",
defaultValue = false,
hotSwappable = false
defaultValue = true,
hotSwappable = true
)
@JvmStatic
@@ -1031,7 +1031,7 @@ object RemoteConfig {
val idealEnabledRegions: String by remoteString(
key = "global.donations.idealEnabledRegions",
defaultValue = "",
hotSwappable = false
hotSwappable = true
)
@JvmStatic
@@ -1039,7 +1039,7 @@ object RemoteConfig {
val sepaEnabledRegions: String by remoteString(
key = "global.donations.sepaEnabledRegions",
defaultValue = "",
hotSwappable = false
hotSwappable = true
)
/** List of device products that are blocked from showing notification thumbnails. */