I am working on an application which need to show notification constantly. I\'ve a service to show the notification every seconds. When the resources goes low android is
As written above you need to use startForeground(int,Notification) method to aware user about your service. It also get more privilage for it.
startForeground(int,Notification)
You can read more about it here (example inside).