New apk backend is not working

After volt build android 12 update, New build are not working no issues with code.

We mentioned engine 9.0 and created the build.

Build is created but the backend not working.

Its not showing any response from http://10.0..2.2 whild calling from js

Config.xml

<?xml version='1.0' encoding='utf-8'?>
<widget android-versionCode="1" id="build.voltbuilder.onroad" ios-CFBundleVersion="1" version="1.0.0" xmlns="https://www.w3.org/ns/widgets">
    <name>OnRoad App</name>
	<engine name="android" spec="9.0.0" />	
    
	<description>A simple config file for VoltBuilder apps.</description>
	
	<icon src="logo.png" />
    
    <content src="index.html" />
    <access origin="*" />
    <allow-intent href="http://*/*" />
    <allow-intent href="https://*/*" />
    <allow-intent href="tel:*" />
    <allow-intent href="sms:*" />
    <allow-intent href="mailto:*" />
    <allow-intent href="geo:*" />
    <platform name="android">
        <allow-intent href="market:*" />
    </platform>
	
	
    <!-- Images can be generated by cordova-res or https://pgicons.abiro.com/ -->
    <platform name="android">
        <icon density="ldpi" src="logo.png" />
        <icon density="mdpi" src="logo.png" />
        <icon density="hdpi" src="logo.png" />
        <icon density="xhdpi" src="logo.png" />
        <icon density="xxhdpi" src="logo.png" />
        <icon density="xxxhdpi" src="logo.png" />
        <splash density="land-ldpi" src="logo.png" />
        <splash density="land-mdpi" src="logo.png" />
        <splash density="land-hdpi" src="logo.png" />
        <splash density="land-xhdpi" src="logo.png" />
        <splash density="land-xxhdpi" src="logo.png" />
        <splash density="land-xxxhdpi" src="logo.png" />
    </platform>
</widget>

User_login.js

$scope.user_login = function() 
	{		
        $http.post('https://10.0.2.2/projects/onroad/web/user_login.php', 
			{'email': $scope.email, 'password':$scope.password})
		.success(function(data, status, headers, config) 
		{
			if(data.success == 1)
			{
				alert("Login Successful");
				$cookieStore.put("cook_user_email",data.email);
				$cookieStore.put("cook_staff_dept",data.field_1);
				window.location = "user_home.html";  // Home Page
				return;				
			}
			else if(data.success == 2)
			{
				alert("Please Fill All Fields");
			}
			else
			{
				alert("Login Unsuccessful");
			}
        });
    }

Tip : If you’re pasting code, html or config files, surround the code with triple back ticks (```), before the first line and after the last one. It will be formatted properly. (We fixed it for you this time)

My guess is that you are getting some kind of runtime error.

To check this, have a look at the Console using the Remote Debugger.