I’ve written an App that uses NSURLSessionUploadTask to upload data to a web service. This is first written to the file system and then handed off to iOS so that the upload will happen in the background.
I need to do something similar with Android, however I’m not sure what the best solution is. I’ve come across android-upload-service on github (https://github.com/gotev/android-upload-service), however I can’t find an example for Xamarin Forms -has anyone used this? I’ve also seen FileUploaderPlugin on github (https://github.com/CrossGeeks/FileUploaderPlugin), however this doesn’t seem to support background processing?