Fix progress reporting for files larger than Integer.MAX_VALUE (2.14 GB) on Android#766
Open
treyreynolds wants to merge 565 commits into
Open
Fix progress reporting for files larger than Integer.MAX_VALUE (2.14 GB) on Android#766treyreynolds wants to merge 565 commits into
treyreynolds wants to merge 565 commits into
Conversation
// this is required to support formData on android
…checking for key first, to prevent potential async issues
Update build.gradle
Add legacy constants to the module spec
Include failure reason in error from writeFile on iOS
Null check HashMap's get result in ReactNativeBlobUtilReq instead of checking for key first, to prevent potential async issues
Fix support of FormData in Fetch polyfill on android
fix: change method names and import to proper one
Add Custom Error for cancel task reject
error - typo
The issue is, that an image URL usually does not accept 'application/octet-stream'. It is also incorrect to use JSON.stringify(dat) as a body parameter as dat is not defined, leading to issue #228
fixes #197
Support Visual Studio 2022
Fix CopyToMediaStore documentation
Update README.md
iOS installation note
This reverts commit 7bb263d.
…android-10-or-older Refactor getNetworkForIp for Android<=10, use RouteInfo instead of LinkAddress
#fixes 443 #fixes #441
Upgrade glob from 13.0.0 to 13.0.1
Fix TypeScript definitions to resolve eslint import-x/no-named-as-default error
Merge branch 'feature/tests' into develop
fixes ##313 # Conflicts: # package-lock.json # package.json # yarn.lock
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
If you attempt to download a file that is larger than ~2 GB on Android you won't receive any progress updates. The fix in this case is simply hard coding a max contentLength so that at least delta updates will come through. This was confirmed to work experimentally and is admittedly a small edge case.