Add call participants overflow to calling v2 screen.

This commit is contained in:
Alex Hart
2024-08-23 09:58:32 -03:00
committed by Nicholas Tinsley
parent 204fcc28c7
commit 3f71f90234
9 changed files with 370 additions and 90 deletions

View File

@@ -480,7 +480,7 @@ public class CommunicationActions {
}
private static Class<? extends Activity> getCallActivityClass() {
return RemoteConfig.useNewCallApi() ? CallActivity.class : WebRtcCallActivity.class;
return RemoteConfig.newCallUi() ? CallActivity.class : WebRtcCallActivity.class;
}
private interface CallContext {

View File

@@ -1103,7 +1103,7 @@ object RemoteConfig {
)
@JvmStatic
@get:JvmName("useNewCallApi")
@get:JvmName("newCallUi")
val newCallUi: Boolean by remoteBoolean(
key = "android.newCallUi",
defaultValue = false,