I\'ve been working on push notifications and I am able to implement it and display it on status bar, the problem I am facing is that I want to display it even if the phone i
I fixed this by adding this line to notification builder
builder.setOngoing(true);
It will also make notification not cancelable by user, but it solves the problem.
Credits to: Marian Klühspies (link)