We're trying to learn/find how to upload multiple images in a background thread asynchronously and notify the user when it's done.
What do you think is the best approach?
1.
Having a normal async thread upload while the user can keep using the App?
Would this still work if the App is minimized, let's say on Android?
2.
Having a service(?) run at all time that manages the upload? If so, how would you do that in Xamarin.Forms? Is it required to be platform-specific like the notification systems?
We're rereading this over and over and aren't done with it, but we want the opinion of the people! (http://developer.xamarin.com/guides/cross-platform/application_fundamentals/backgrounding/)