New group button behind new Group UI feature flag.

This commit is contained in:
Alan Evans
2020-04-24 10:13:07 -03:00
committed by Greyson Parrelli
parent d5419ec9fa
commit 8e0fba7992
14 changed files with 128 additions and 31 deletions

View File

@@ -242,6 +242,11 @@ public final class FeatureFlags {
return getValue(CALLING_PIP, false);
}
/** New group UI elements. */
public static boolean newGroupUI() {
return getValue(NEW_GROUP_UI, false);
}
/** Only for rendering debug info. */
public static synchronized @NonNull Map<String, Boolean> getMemoryValues() {
return new TreeMap<>(REMOTE_VALUES);