Skip to content Skip to sidebar Skip to footer

Failed To Load Resource: Net::err_connection_refused Cordova Android

i have developing one android application using cordova ,i have facing the following issue while calling api,kindly help me out this issue Failed to load resource: net::ERR_CONNECT

Solution 1:

This could be version compatiiblity issue. Check out the answers on a similar issue here

Else, this could be because you have blocked the API URLs in your application. Set the following values in your config.xml

<accessorigin="*" /><allow-intenthref="http://*/*" /><allow-intenthref="https://*/*" />

Note: This is not a recommended setting for production. If this solution works for you consider fine-tuning your URLs. Refer Whitelisting URLS - Cordova Documentation for more details on how you can configure this.

Post a Comment for "Failed To Load Resource: Net::err_connection_refused Cordova Android"