Как сделать уведомление, например, когда я нажимаю на него, уведомление удаляется, но без действий.
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0,intent, PendingIntent.FLAG_ONE_SHOT);
NotificationCompat.Builder builder = new NotificationCompat.Builder(this, channelId)
.setSmallIcon(R.mipmap.ic_launcher)
.setContentTitle("Title")
.setContentText(""Message)
.setAutoCancel(true)
.setContentIntent(pendingIntent)
.setPriority(Notification.PRIORITY_MAX);
NotificationManager manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
manager.notify(0, builder.build());
с помощью вышеуказанного кода, приложение открывается при нажатии на уведомление.
Это уведомление приходит от FCM, который я положил это в настраиваемом конструкторе уведомлений.