Do not play notification sound when creating media session on Android

This commit is contained in:
Fernando Jiménez Moreno 2019-11-13 16:59:24 +01:00
parent 7b5b46f560
commit caedc28118

View file

@ -75,7 +75,7 @@ public class MediaSession {
mContext.getResources().getString(R.string.media_channel_name);
String description =
mContext.getResources().getString(R.string.media_channel_description);
int importance = NotificationManager.IMPORTANCE_DEFAULT;
int importance = NotificationManager.IMPORTANCE_LOW;
NotificationChannel channel =
new NotificationChannel(MEDIA_CHANNEL_ID, name, importance);
channel.setDescription(description);