-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
onUploadPogress does not work as expected #21
Comments
@sheldon-sminq this is because by default the upload chunk size is set to 2MB. So with a file size <= 2MB, it would all get uploaded at once with no progress update in between. However, for files larger than 2MB, you would get an upload progress for every 2MB chunk uploaded. Does this make sense to you? |
Is this setting available per account, as in India we have unpredictable mobile networks and have to compress the image to speed up the image upload. So most images after compression are between 200Kb to 1.5MB |
as of now, no, but it can be easily added. |
@sheldon-sminq this issue is now fixed and released here. You can now do |
We tried the new SDK and the uploadProgress does not return bytes in batches, but directly returns 100%.
Which does not help to display upload progress.
The text was updated successfully, but these errors were encountered: