Previously we were using HTTP for our REST API and had no issues. But, we changed our REST API server to run with HTTPS with self-signed certificate in IIS and now we have some issues.
When we try to run the mobile app in Android Emulator, it works correctly. But, when we tried to run in real mobile device, it does not work.
How can I make this work with a real Android device?
To whomsoever it may concern:
Plugin cordova-plugin-ionic-webview is used
Plugin cordova-plugin-whitelist is used
Config.xml
...
<access origin="*" />
<allow-navigation href="*" />
...