I am creating a service for my android app, providing data to the service via Intents. The problem is that when the service is destroyed by the system than the intent data p
If you are overriding onstartCommand() method, its your responsibility to stop it when not needed by calling stopSelf() or stopService() command.