forked from wkh237/react-native-fetch-blob
-
Notifications
You must be signed in to change notification settings - Fork 794
Fix progress reporting for files larger than Integer.MAX_VALUE (2.14 GB) on Android #766
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
Open
treyreynolds
wants to merge
544
commits into
joltup:master
Choose a base branch
from
RonRadtke:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
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
* RN new architecture support Merge branch 'pulls/663244431/186' into develop Thanks a lot for your effort @cipolleschi and @cortinico
docs: media store typo
Fix link in CONTRIBUTING.md to dev project
…ported as 'URIUtil') was not found`, e.g. when `npm run build-web` in https://github.com/flyskywhy/PixelShapeRN/tree/v1.1.23
fix: with react-native-web product build will `export 'URIUtil' (reexported as 'URIUtil') was not found`
Fix ext check condition not correct.
Declaring excludeFromBackupKey in index.d.ts so it is accessible in typescript.
I was facing no lambda support in source 7. To fix it I have added it.
// 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
Upgrade react-native and react-native-windows
Upgrade RN and RNW to 0.78
Add targetHostIp option, support concurrent STA in Android
…tsLibrary for iOS. Refactor asset handling methods to accommodate PHAsset, including changes to data retrieval and metadata extraction.
Update React Native Blob Util to use Photos framework instead of Asse… Thank you very much!
fix(ios): progress interval and count read incorrectly
…nkAddress * In Android 10, with previous versions of Android SDK this fallback was working but something changed. The previous logic was incorrect and was matching the host ip (current device) with the targetHostIp (the device we want to connect to). * Code is now more robust and uses DHCP (A11+) or Route info (A10 or older, and A11+ if DHCP fails)
…android-10-or-older Refactor getNetworkForIp for Android<=10, use RouteInfo instead of LinkAddress
#fixes 443 #fixes #441
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.