Call quality survey integration.

This commit is contained in:
Alex Hart
2025-11-26 13:51:03 -04:00
committed by jeffrey-signal
parent 804f479cb0
commit 54fb7ff23f
24 changed files with 772 additions and 159 deletions

View File

@@ -1229,5 +1229,21 @@ object RemoteConfig {
defaultValue = false,
hotSwappable = true
)
@JvmStatic
@get:JvmName("callQualitySurvey")
val callQualitySurvey: Boolean by remoteBoolean(
key = "android.callQualitySurvey",
defaultValue = false,
hotSwappable = true
)
@JvmStatic
@get:JvmName("callQualitySurveyPercent")
val callQualitySurveyPercent: Int by remoteInt(
key = "android.callQualitySurveyPercent",
defaultValue = 1,
hotSwappable = true
)
// endregion
}