Android: не показывается уведомление о версии sumsung android 6.0.1 - PullRequest
0 голосов
/ 05 сентября 2018

Мой код:

final NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
                        .setContentTitle(data.get("TITLE"))
                        .setContentText(data.get("TEXT"))
                        .setAutoCancel(true)
                        .setContentIntent(pendingIntent)
                        .setLargeIcon(icon)
                        .setSmallIcon(icon1);

Uri idUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_RINGTONE);
notificationBuilder.setSound(idUri);

final NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
Notification note = notificationBuilder.build();
notificationManager.notify(1, note);

В других версиях и устройствах работает нормально

Но в этой версии получать уведомления, но не показывать пользователю.

...