filestack-android icon indicating copy to clipboard operation
filestack-android copied to clipboard

Display detailed upload progress in notification

Open shawnmaten opened this issue 7 years ago • 6 comments

It was intended from the start to have detailed upload progress notifications for individual files.

  • bytes sent / bytes total
  • moving average bitrate
  • moving average ETA

There are 2 major blockers to enabling this.

The first thing that needs to be solved is this issue in the Java SDK. filestack/filestack-java#51 The base SDK was supposed to provide the necessary progress updates for this, as a stream of progress objects from the upload observable, but that isn't working. And looking at the code now, I did not understand how parallelism was working in RX. So that all needs to be sorted out but I think the idea of the RX interface is fine, it's just not straightforward to have RX be parallel. (I still might be really lacking in RX understanding here.)

The other thing is that the UploadService needs some work. The IntentService won't work with non-blocking code. If we subscribe to an observable for the upload, we won't be blocking, and the service would just quit. So instead of an IntentService we need a base Service or maybe something else. And more recent versions of Android have introduced tougher restrictions to prevent battery draining (there's now a job scheduling system, JobIntentService, other things I've skimmed in press releases) so we should conform to that.

shawnmaten avatar Jan 26 '18 19:01 shawnmaten

Hi shawnmaten, Is there any update related to progress percent while uploading file. We need this to include in our project to show progress to the user while uploading.

mtariquekhan avatar Apr 20 '18 09:04 mtariquekhan

Added to internal tracker: https://filestack.atlassian.net/browse/FS-3356

shawnmaten avatar May 03 '18 19:05 shawnmaten

@mtariquekhan I don't have an update on this right now but it's still planned to be fixed.

shawnmaten avatar May 03 '18 19:05 shawnmaten

Is there any new progress on this issue?

mhswtf avatar Oct 19 '18 18:10 mhswtf

is there any progress @shawnmaten?

mtariquekhan avatar May 30 '19 11:05 mtariquekhan

Hey just a heads up @mhswtf and @mtariquekhan I no longer work at Filestack so I wouldn't know about any internal progress on this. You might try mentioning the most recent committer or sending an inquiry through Support.

shawnmaten avatar Jun 01 '19 20:06 shawnmaten