I am currently working on an application which requires fetching of data from the net. But if the user presses the start button or starts any other application, the data fetching process in my application is interrupted and the app throws exceptions like WebException.
In-order to prevent this I have forced the app to work under background even if user deactivates it. Is this a bad approach and will the tomb-stoning the app and resuming the state from state dictionary approach be a better one?