summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeoffrey Pitsch <gpitsch@google.com>2017-07-17 16:01:15 -0400
committerGeoffrey Pitsch <gpitsch@google.com>2017-07-17 16:01:15 -0400
commitb0a086c29f9fe63ced4524b899c2ca2040fce328 (patch)
tree8c63a21855df43d0cede2430ed814a9c428edde5
parentaf420f062132c04e757d1bb13383b94a82a3c197 (diff)
downloadandroid_packages_providers_DownloadProvider-b0a086c29f9fe63ced4524b899c2ca2040fce328.tar.gz
android_packages_providers_DownloadProvider-b0a086c29f9fe63ced4524b899c2ca2040fce328.tar.bz2
android_packages_providers_DownloadProvider-b0a086c29f9fe63ced4524b899c2ca2040fce328.zip
Downgrade "Downloading" notification channel to MIN
Won't impact devices that have already created the channel. Bug: 63755460 Test: N/A Change-Id: I3930ccf67bc5594493e1d10e48fc43fded104ebf
-rw-r--r--src/com/android/providers/downloads/DownloadNotifier.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/providers/downloads/DownloadNotifier.java b/src/com/android/providers/downloads/DownloadNotifier.java
index c36dbd8c..b7016fcb 100644
--- a/src/com/android/providers/downloads/DownloadNotifier.java
+++ b/src/com/android/providers/downloads/DownloadNotifier.java
@@ -99,7 +99,7 @@ public class DownloadNotifier {
// Ensure that all our channels are ready to use
mNotifManager.createNotificationChannel(new NotificationChannel(CHANNEL_ACTIVE,
context.getText(R.string.download_running),
- NotificationManager.IMPORTANCE_LOW));
+ NotificationManager.IMPORTANCE_MIN));
mNotifManager.createNotificationChannel(new NotificationChannel(CHANNEL_WAITING,
context.getText(R.string.download_queued),
NotificationManager.IMPORTANCE_DEFAULT));