I'm adding proxy configuration to my axios instance
const instance = axios.create({ baseURL: 'https://example.com', proxy: { host: 'http://10.X.X.X', port: 80 } })
However it's not working, any suggestions?
If there are any other ways to add proxy in react native app for android please share those too, any help is really appreciated.