Ajax request not working in android 10

ajax dont work on android 9 and android 10.
and the solution was to add the network_security_config file, register ip.
since here:

But it began to work only on android 9. On android 10, it doesn’t work as before (real device).
Everything works on the emulator (on a computer).

It is necessary to add something somewhere. Only this - I can’t find it anywhere.
If you know a solution, please write.

Http =>https ?
Или в чем проблема?

Запросы идут на мой сервер (http), сервер на node.js.
При запросе (сейчас только на аднроид 10) приложение сразу выдает ошибку связи (на стороне сервера запрос не приходит), т.е. сам андроид блокирует. Где-то надо что-то до прописать. Видимо в 10-ке дополнительно какую то защиту сделали.
Раньше,
До того как не добавил файл network_security_config.xml в папку \platforms\android\app\src\main\res\xml
и там прописал :

<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
    <domain-config cleartextTrafficPermitted="true">
        <domain includeSubdomains="true">localhost</domain>
        <domain includeSubdomains="true">192.232.233.145</domain>
        <domain includeSubdomains="true">192.168.1.12</domain>
    </domain-config>
</network-security-config>

со своими ip конечно андроид 9 - также не пускал к серверу.

Решено.
Проблема была не в 10 версии.
Решение, которое привел выше работает как для андроид 9, так и для 10.
У меня была глупая ошибка (в базе данных) и версии андроид здесь не причем.