Xamarin.Android Background task disposed after application closed
问题 Task: Create a background task to run when application is stopped/paused that periodically (3-7 seconds) performs HTTP requests and stores response information in mysqlite and displays local notifications when required. I have create a background service like the following, [Service(Enabled = true)] public class MyRequestService : Service That is started like an intent from MainActivity, public void StartMyRequestService() { var serviceToStart = new Intent(this, typeof(MyRequestService));