[F7+Vue] Android POST Request Promise does not work

I have a problem with the following line on Android platform:

`

app.request.promise.post(‘http://example.com’, { email: this.username, password: this.password })

`

the request is not received by the server and the resposne i’m getting is

2020-12-27 16:40:33.537 5157-5157/com.example.app I/chromium: [INFO:CONSOLE(277)] “{“xhr”:{“requestUrl”:“http://example.com”,“requestParameters”:{“url”:“http://example.com",“method”:“POST”,“data”:{“email”:"[email protected]”,“password”:“development”},“async”:true,“cache”:true,“user”:”",“password”:"",“headers”:{},“xhrFields”:{},“statusCode”:{},“processData”:true,“contentType”:“application/x-www-form-urlencoded”,“timeout”:0,“crossDomain”:true}},“status”:0,“message”:0}", source: webpack:///./src/components/app.vue?./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options (277)

It works fine on other platforms (web/iOS). I have also installed cordova-plugin-whitelist and set in the cordova/config.xml file. Could you please advise on how to fix this? Thank you.

Solved problem by running API server on FQDN with HTTPS, running just from IP from local network through HTTP causes hair-tearing unexplainable error.