Просто добавьте ниже в тег приложения манифеста
android:networkSecurityConfig="@xml/network_security_config"
Добавьте ниже код внутри приложения, где мы добавляем действия
<uses-library android:name="org.apache.http.legacy" android:required="false"/>
Добавить папку xml в папку res. и создайте файл network_security_config.xml в папке xml.
<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
<domain-config cleartextTrafficPermitted="true">
<domain includeSubdomains="true">your domain which is your base url for webservice.com</domain>
</domain-config>
</network-security-config>