Proxy.conf.json when emulating in android?

Hi Everyone:

I have a angular+ionic app I’m trying to test in the android simulator. My app’s core files are housed locally but I’m storing all user and app data in a remote server.

On the android+ionic side of things, I use a proxy.conf.json file to designate when to call the remote server. It looks like this:
{
“/api/*”: {
“target”: “https://servername”,
“secure”: false,
“logLevel”: “debug”
}
}

Is there something I need to configure when emulating on an android device that similar to this file? I’m a bit confused about the remote server calls. I can build the app in the android emulator. It just does nothing when I click buttons that call the remote server.

Thanks,
Ale