Звук уведомления не работает в android 9 на 7 телефонах, уведомление не всплывает. Если вы включаете звук и всплывающие уведомления в настройках приложения все работает правильно
Добавляю канал так:
final NotificationManager notificationManager = (NotificationManager) cordova.getActivity()
.getSystemService(Context.NOTIFICATION_SERVICE);
String appName = this.getAppName();
NotificationChannel mChannel = new NotificationChannel(DEFAULT_CHANNEL_ID, appName,
NotificationManager.IMPORTANCE_HIGH);
mChannel.setDescription(appName);
mChannel.setImportance(NotificationManager.IMPORTANCE_HIGH);
mChannel.setLockscreenVisibility(NotificationCompat.VISIBILITY_PUBLIC);
mChannel.enableVibration(true);
mChannel.setVibrationPattern(new long[] { 100, 1000, 500, 1000 });
mChannel.setShowBadge(true);
mChannel.setBypassDnd(true);
mChannel.enableLights(true);
mChannel.setLightColor(Color.WHITE);
AudioAttributes audioAttributes = new AudioAttributes.Builder()
.setContentType(AudioAttributes.CONTENT_TYPE_SONIFICATION)
.setUsage(AudioAttributes.USAGE_NOTIFICATION)
.build();
mChannel.setSound(soundUri, audioAttributes);
notificationManager.createNotificationChannel(mChannel);
чаще всего проблема появляется на устройствах xiaomi.