I'm new to React-Native. I've created a sample application in my office machine. As we're behind a corporate proxy, I've to set APN (Access Point Name) in Android Emulator in order to gain internet access. Without APN, the development server that's on 10.0.2.2:8081 works fine. But after setting APN in emulator, I understand it would not go to 10.0.2.2:8081.
Now, if I don't set a APN, I've no internet access on emulator, and if I set a APN in emulator, the development server that's on 10.0.2.2:8081 isn't caught by the device.
Any help or workaround would be appreciated.
PS: I've tried running emulator from command line by giving a proxy i.e.
emulator -http-proxy http://192.168.0.1:8080
but this didn't even worked in React Development server case.
Is there someway that we are able to get Internet access on Emulator without using Proxy.
i solved like this First of all i run on CMD (i have W7) this command
and then in the device i set APN like this
and that's all.
It works perfectly.