Set notification importance on Android 8 to LOW.
All > levels produces sound.
This commit is contained in:
parent
9fa33f6420
commit
2808735a17
@ -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);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user