Reputation: 21616
As I understoond, if we have local service of some application, as soon as the application goes down, the service goes down as well - is that true?
and if it is, how can we make an application to run all the time without go down? (without using Alarm manager). I though that the purpose of local service is to answer this situation: " to make the application everlasting"
Upvotes: 0
Views: 432
Reputation: 1007359
how can we make an application to run all the time without go down?
i though that the purpose of local service is to answer this situation: " to make the application everlasting"
Absolutely not. Services can run for a while, but they can be:
Upvotes: 2
Reputation: 73494
That is incorrect. BackgroundServices(like Google Maps Navigation/Music Player) are intended to never be killed by the system.
Upvotes: -1