1

I have today widget in Xamarin , which displays shared data from parent app. Everything works well and widget updates its data until I swipe(kill) parent app. Is there any way to wake up parent app without opening it, only to get updated data from API?

Vitali
  • 341
  • 1
  • 5
  • 19
  • Xamarin has some great guides that provides the different ways that iOS supports backgrounding : https://developer.xamarin.com/guides/ios/application_fundamentals/backgrounding/ – SushiHangover Jan 23 '17 at 16:13

1 Answers1

1

You need to use Service or IntentService in Android. The concept does not exist in iOS, no long running tasks in iOS, in iOS you can use push notifications to wakeup the application.

Anas EL HAJJAJI
  • 1,048
  • 2
  • 10
  • 22