Put poll receive support behind feature flag.

This commit is contained in:
Michelle Tang
2025-10-09 15:31:07 -04:00
committed by Alex Hart
parent f9ddba5aed
commit 7de9218b80
4 changed files with 38 additions and 0 deletions

View File

@@ -1181,5 +1181,12 @@ object RemoteConfig {
hotSwappable = true
)
@JvmStatic
@get:JvmName("receivePolls")
val receivePolls: Boolean by remoteBoolean(
key = "android.receivePolls",
defaultValue = false,
hotSwappable = true
)
// endregion
}