joltup / rn-fetch-blob

A project committed to making file access and data transfer easier, efficient for React Native developers.
MIT License
2.81k stars 771 forks source link

Fix progress reporting for files larger than Integer.MAX_VALUE (2.14 GB) on Android #766

Open treyreynolds opened 2 years ago

treyreynolds commented 2 years ago

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.