Wifi .GET doesn't work on android 12 or 13

Hello, I made an IoT device bassed on ESP32 who connects to my phone wifi acces point, My app has a button that calls web.GET(URL), I send the information in the URL to the ESP32, my app works ok on android 10, but whit android 12 or 13 it doesn't send the GET request.
can anyone help me, or do you have any information about it?
Thanks
imagen_2023-12-10_213829317

With this Arduino function I read the information in the URL:

void WifiCom() {
WiFiClient client = server.available();
if (client) {
paqueteWifi = client.readStringUntil(']');
actDatos(paqueteWifi);
}
client.stop();
}