API call then return message in response code 0

Dear Team,
Thanx for advance. I m call Api but return response code 0.
<preference name="android-targetSdkVersion" value="33" />
Config.xml :-

<edit-config file="AndroidManifest.xml" mode="merge" target="/manifest/application" xmlns:android="http://schemas.android.com/apk/res/android">
    			<application android:usesCleartextTraffic="true" />
		</edit-config>
		<resource-file src="resources/android/xml/network_security_config.xml" target="res/xml/network_security_config.xml" />

Network-security-config :-

<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
  <domain-config cleartextTrafficPermitted="true">
    <domain includeSubdomains="true">ip:3476/</domain>
  </domain-config>
</network-security-config>

Log File

Looking at your config.xml file, I notice you’re using

<engine name="android" spec="11.0.0" />

Try changing this to 12.0.0. It adds support for SDK 33.

<engine name="android" spec="12.0.0" />
Changed in config.xml file but Same error issue.

The build is successful - I didn’t see any error messages in the VoltBuilder log.

Is the problem happening at runtime? Are there are error messages on the console?

$http.post($rootScope.apiUrl + "/api/Login/UserLogin?k=" + Math.random(), JSON.stringify(JSONArray), { headers: headers }, { withCredentials: true })
            .success(function (data) {
                deferred.resolve(data);
            })
            .error(function (msg, code) {
                deferred.reject(msg);
            });

if (response.status === 0) {
                $rootScope.showMessage('Your internet connection is not working, Please verify internet connection and relogin once again', 'error');
            }

Api Not HIt on Server.
Same Code are Working. Since 1 years build apk file from Volt Builder. But yet time, Change sdk 33 version target android then not call API ?

Are there any messages on the Console? Use the Remote Debugger:

I m debug remote android devices then get Error :-
Failed to load resource: net:: ERR_CACHE_MIS
Plz. help
error

This doesn’t sound like a VoltBuilder caused issue. I did find this on StackOverflow.

You’ll need to figure out what operation your app is doing when it gets this error - perhaps by adding some more tracing into it.