I am using Android 9 emulator, it has internet connection from system and I have added internet permission in manifest. When I try to call api it shows error message as : connection error.
API call in Android 9 configuration devices and emulator shows connection error
1.5k Views Asked by Athira At
2
There are 2 best solutions below
0

Just add below in manifest's application tag
android:networkSecurityConfig="@xml/network_security_config"
Add below code inside the <application>
where we add activities
<uses-library android:name="org.apache.http.legacy" android:required="false"/>
Add the XML folder in the res folder. and create a network_security_config.xml
file in the XML folder.
<?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>
As Piyush commented in my question the answer is to add
android:usesCleartextTraffic="true"
in manifest file with inapplication
tag