Set notification importance on Android 8 to LOW.

All > levels produces sound.
This commit is contained in:
Adrian Ulrich 2017-09-03 14:50:49 +02:00
parent 9fa33f6420
commit 2808735a17

View File

@ -45,7 +45,7 @@ public class NotificationHelper {
mChannelId = channelId;
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
NotificationChannel channel = new NotificationChannel(channelId, name, NotificationManager.IMPORTANCE_DEFAULT);
NotificationChannel channel = new NotificationChannel(channelId, name, NotificationManager.IMPORTANCE_LOW);
mNotificationManager.createNotificationChannel(channel);
}
}