I have an activity that starts a service. If I exit to home screen and then from the recent apps list manually close the activity, onCreate is called again in the service.
So when the activity is destroyed, onCreate is called again (even though the service was running at the time onDestroy was called in the activity)
I don't want onCreate in the service to be called again. I know its a possible duplication of this: Android service onCreate is called multiple times without calling onDestroy BUT the solution suggested here of putting the service in another process doesn't work (at least on Android 4.4 kit kat)
Any suggestions?