Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 797772b1 authored by Dianne Hackborn's avatar Dianne Hackborn
Browse files

Add command line options for some new intent flags.

Forgot to add these when the flags were added.

Test: manual
Change-Id: If71ea756ca85946155d7a6848454f61d137138c0
parent bf99f78a
Loading
Loading
Loading
Loading
+8 −1
Original line number Diff line number Diff line
@@ -6039,6 +6039,12 @@ public class Intent implements Parcelable, Cloneable {
                case "--receiver-foreground":
                    intent.addFlags(Intent.FLAG_RECEIVER_FOREGROUND);
                    break;
                case "--receiver-no-abort":
                    intent.addFlags(Intent.FLAG_RECEIVER_NO_ABORT);
                    break;
                case "--receiver-include-background":
                    intent.addFlags(Intent.FLAG_RECEIVER_INCLUDE_BACKGROUND);
                    break;
                case "--selector":
                    intent.setDataAndType(data, type);
                    intent = new Intent();
@@ -6162,7 +6168,8 @@ public class Intent implements Parcelable, Cloneable {
                "    [--activity-single-top] [--activity-clear-task]",
                "    [--activity-task-on-home]",
                "    [--receiver-registered-only] [--receiver-replace-pending]",
                "    [--receiver-foreground]",
                "    [--receiver-foreground] [--receiver-no-abort]",
                "    [--receiver-include-background]",
                "    [--selector]",
                "    [<URI> | <PACKAGE> | <COMPONENT>]"
        };