New internal testing flag and V1 group creation button. All menus create GV1.

This commit is contained in:
Alan Evans
2020-05-29 15:19:47 -03:00
committed by Greyson Parrelli
parent 9b32eaeb8a
commit b9f11dafff
7 changed files with 53 additions and 15 deletions

View File

@@ -29,8 +29,8 @@ public class CreateGroupActivity extends ContactSelectionActivity {
private View next;
public static Intent newIntent(@NonNull Context context) {
if (!FeatureFlags.newGroupUI() || !FeatureFlags.groupsV2create()) {
public static Intent newIntent(@NonNull Context context, boolean forceV1) {
if (forceV1 || !FeatureFlags.newGroupUI() || !FeatureFlags.groupsV2create()) {
return new Intent(context, GroupCreateActivity.class);
}