ManishRaj
ManishRaj
+1. There needs to be support for proxy configuration, preferably controlled via environment variables.
@ioitiki I did the exact same thing after struggling for an hour! Cheers. Link for the lazy: https://github.com/Agontuk/react-native-geolocation-service
Setting responseType to text fixed it for me: ``` sending(file, xhr) { let _send = xhr.send; xhr.responseType = "text"; xhr.send = () => { _send.call(xhr, file); } }, ```