mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-04-24 19:00:26 +01:00
New internal testing flag and V1 group creation button. All menus create GV1.
This commit is contained in:
committed by
Greyson Parrelli
parent
9b32eaeb8a
commit
b9f11dafff
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user