Re: [Interest] Background Uploads in Android

2016-03-03 Thread Liang Jian
Maybe you should turn on ndroid.app.background_running in your AndroidManifest.xml On Thu, Mar 3, 2016 at 3:56 AM, Jason H wrote: > So there seems to be some conflicting information out there about how to > do this in Qt. > It seems tha

Re: [Interest] Background Uploads in Android

2016-03-02 Thread m...@rpzdesign.com
Looks like you have to create and launch in Java that will take over uploading your file in the background when Android feels like it. Job Schedule API may be your best way out. No more worrying about ApplicationSuspended, Job Api is independent of that. Bad thing is that you have to write som

[Interest] Background Uploads in Android

2016-03-02 Thread Jason H
So there seems to be some conflicting information out there about how to do this in Qt. It seems that in 5.3, because the Qt thread as not the UI thread, everything worked. then in 5.4, that stopped working? This was supposed to be fixed in 5.5? Anyhow, I'm working with 5.6 now. I have enough o