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 773 forks source link

wifi only option, and missing typings. #497

Closed cristianoccazinsp closed 4 years ago

cristianoccazinsp commented 4 years ago

This PR adds a new option: wifiOnly to the request config. The goal of this flag is to force requests to only go through WiFi interfaces.

Rationale: Connect to IOT devices while also being connected to mobile/LTE data. Also useful when downloading large files and we don't want to download from mobile data.

Implemented for both Android and IOS, although the approach is slightly different on each one. For Android, SDK 21 or above is needed, and the setting will be ignored otherwise.

Should close https://github.com/joltup/rn-fetch-blob/issues/454

cristianoccazinsp commented 4 years ago

Thoughts on this? Does anyone review PRs?

cristianoccazinsp commented 4 years ago

Also added a fix for https://github.com/joltup/rn-fetch-blob/issues/494