Call in PiP: add feature flag, disabled in release builds.

This commit is contained in:
Benoit Marty 2024-07-15 16:47:24 +02:00 committed by Benoit Marty
parent 7ae5e99643
commit d27e86f396
3 changed files with 19 additions and 2 deletions

View file

@ -113,4 +113,11 @@ enum class FeatureFlags(
defaultValue = { true },
isFinished = false,
),
PictureInPicture(
key = "feature.pictureInPicture",
title = "Picture in Picture for Calls",
description = "Allow the Call to be rendered in PiP mode",
defaultValue = { it.buildType != BuildType.RELEASE },
isFinished = false,
),
}