Some apps have notifications which can´t be dismissed by swiping them away.
How can I manage such behaviour?
I used the below code to make my notification persistent:
startForeground(yourNotificationId,notificationObject);
To make it dismissable, just do the below:
stopForeground(true);