My code is working on android KitKat but it when running it in Pie gives io exception
Cleartext http traffic to server.com not permitted
Simple Solution:
Add this line in your manifest:
android:usesCleartextTraffic="true"
because I have faced the same issue with my php page for json api.
It should look like this:
...
Let's hope it works.