In my application was failing several connections to my webservice, I found the way to solve it through a plugin, Cordova-plugin-whitelist
. However, adding this plugin I had some problems with google maps and not loaded.
my index.html
<meta http-equiv="Content-Security-Policy" content="default-src *; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' 'unsafe-eval'">
Error :
Error: undefined is not an object (evaluating 'google.maps.event.addDomListener')
Removing the meta
parameter, all the maps loaded correctly.