I want to create application that will start when the device is start and will run on the background until the device will be shutdown.
I know that there are a 'services' and 'IntentService' and how to deal with them.
But i can't understand witch of them will be fit my my needed.
The service that i want to create will run on the main thread with no UI ( like the 'service' ) and do some action but this will be long turn service and from what i know .. to use a long turn service it better to use 'IntentService'
So, please any help ... how to do it ?
And how i start my service at the startup ?