I am just little confused , Services have a higher priority than Thread . and its better to put Thread inside of service if we want to do long time operation.BUT in this question
we see that we should put services inside of Thread if we want it to keep it running after we close the app !
If I have Long time operation and I want it not to be closed , which should I use ? Service inside thread or Thread inside Services ?
take a look ( simmilar question ) Thread inside a service, or service inside a thread?