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?
Asked
Active
Viewed 119 times
1 Answers
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
-
As I understood, push notifications can't wake up the app if it was terminated by user. – Vitali Jan 24 '17 at 07:47
-
There is a way to wakeup iOS application using Notifications see http://stackoverflow.com/a/35388109/523026 hope this helps – Anas EL HAJJAJI Jan 24 '17 at 09:37