From Android 9, Android blocks cleartext traffic (HTTP), unless the app explicitly allows it in the configuration.
I added android:usesCleartextTraffic="true"
to the application field in AndroidManifest.xml and it works successfully.
The question is, what is the correct way to allow clear text HTTP traffic in ionic?
I believe edit the AndroidManifest manually is not the correct way.