I realized an android application which always has to remain activated in the background. To make that, it is enough to use a Service which remains active after the user is left the application.
Nevertheless, if the user rebooting, the application as well as the Service will not be any more active.
How to solve this problem?
I think of having an idea with BroadcastReceiver but I am not on whether it is the best solution.
Thanks in Advance.