Hey friends, I'm facing an issue with Cordova 10.1.2. When I update the API level from 30 to 31 in the config.xml file:
This particular code isn't functioning as expected
$.ajax({
url: "#URL"
, type: 'GET'
, async: false
, success: function (result) {
LOGGER.info('result ', result);
}
, complete: function (xhr, status) {
}
});
HTTP requests are not working, but HTTPS is fine. Can someone please assist me in making HTTP work properly?