diff options
| author | 2014-10-06 22:35:09 +0000 | |
|---|---|---|
| committer | 2014-10-06 22:35:09 +0000 | |
| commit | de93b1049eb84ccdb30e9eb7dd1f255a82e41918 (patch) | |
| tree | b808a52470bddda97f7f3cae4e8a6ccfa8d4b357 | |
| parent | 8cdb0bc08728f18b75eca429678ea9b778191b6e (diff) | |
| parent | a940f8656d5ca6eb2d737a9a480166c760684ee0 (diff) | |
am a940f865: Merge "Hide bug report notification in Android Framework from watches." into lmp-sprout-dev
* commit 'a940f8656d5ca6eb2d737a9a480166c760684ee0':
Hide bug report notification in Android Framework from watches.
| -rw-r--r-- | packages/Shell/src/com/android/shell/BugreportReceiver.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/Shell/src/com/android/shell/BugreportReceiver.java b/packages/Shell/src/com/android/shell/BugreportReceiver.java index 02a3aeb3b615..48ecaa5445be 100644 --- a/packages/Shell/src/com/android/shell/BugreportReceiver.java +++ b/packages/Shell/src/com/android/shell/BugreportReceiver.java @@ -92,6 +92,7 @@ public class BugreportReceiver extends BroadcastReceiver { .setContentIntent(PendingIntent.getActivity( context, 0, notifIntent, PendingIntent.FLAG_CANCEL_CURRENT)) .setAutoCancel(true) + .setLocalOnly(true) .setColor(context.getResources().getColor( com.android.internal.R.color.system_notification_accent_color)); |