diff options
-rw-r--r-- | core/java/android/content/Intent.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/java/android/content/Intent.java b/core/java/android/content/Intent.java index 8cc9a3aecb70..c5500949b25f 100644 --- a/core/java/android/content/Intent.java +++ b/core/java/android/content/Intent.java @@ -4842,6 +4842,10 @@ public class Intent implements Parcelable, Cloneable { * or not running) apps, regardless of whether that would be done by default. By * default they will only receive broadcasts if the broadcast has specified an * explicit component or package name. + * + * NOTE: dumpstate uses this flag numerically, so when its value is changed + * the broadcast code there must also be changed to match. + * * @hide */ public static final int FLAG_RECEIVER_INCLUDE_BACKGROUND = 0x01000000; |