Я хочу опубликовать свое уведомление с приоритетом высоты, без звука и вибрации. Я даже не вызываю setSound () или setVibrate (), однако я всегда получаю звук по умолчанию и вибрирую своим уведомлением. Любой совет?
notificationBuilder = NotificationCompat.Builder(context, NotificationKeys.CHANNEL_NEW_ORDER_ID)
.setContentIntent(pendingIntent)
.setContentTitle(context.getString(R.string.app_name))
.setCustomContentView(collapseView)
.setStyle(NotificationCompat.DecoratedCustomViewStyle())
.setSmallIcon(R.drawable.ic_app_logo_primary)
.setFullScreenIntent(pendingIntent, true)
.setOnlyAlertOnce(true)
.setOngoing(true)
.setAutoCancel(true)
// I also tried with null but didn't work
.setSound(null)
.setVibrate(null)
NotificationManagerCompat.from(context).notify(myNotificationKey, notificationBuilder.build())