|
|
|
|
|
by viraptor
3639 days ago
|
|
That seems to go against the documentation: (https://developer.android.com/guide/components/services.html) > A started service must manage its own lifecycle. That is, the system does not stop or destroy the service unless it must recover system memory and the service continues to run after onStartCommand() returns. A started service shouldn't be killed randomly - after all, that's how the downloads are handled - you don't see those disappearing without a reason. |
|