Increased importance of service notification channel (also used for active call notifications)

This commit is contained in:
Sylvain Berfini 2019-11-15 11:34:15 +01:00
parent 9eeb79a5a9
commit cdf8b55d06

View file

@ -76,7 +76,7 @@ class ApiTwentySixPlus {
CharSequence name = context.getString(R.string.content_title_notification_service); CharSequence name = context.getString(R.string.content_title_notification_service);
String description = context.getString(R.string.content_title_notification_service); String description = context.getString(R.string.content_title_notification_service);
NotificationChannel channel = NotificationChannel channel =
new NotificationChannel(id, name, NotificationManager.IMPORTANCE_NONE); new NotificationChannel(id, name, NotificationManager.IMPORTANCE_LOW);
channel.setDescription(description); channel.setDescription(description);
channel.enableVibration(false); channel.enableVibration(false);
channel.enableLights(false); channel.enableLights(false);