Use non-global remote config for usePqRatchet.

This commit is contained in:
gram-signal
2025-07-11 11:48:42 -07:00
committed by GitHub
parent c41d7c672d
commit 0dbfdaa4a6

View File

@@ -1159,8 +1159,8 @@ object RemoteConfig {
@JvmStatic
@get:JvmName("usePqRatchet")
val usePqRatchet: UsePqRatchet by remoteValue(
key = "global.usePqRatchet",
hotSwappable = true
key = "android.usePqRatchet",
hotSwappable = false
) { value ->
if (value.asBoolean(false)) UsePqRatchet.YES else UsePqRatchet.NO
}