Cleartext http traffic to server.com not permitted

后端 未结 5 1296
無奈伤痛
無奈伤痛 2020-12-16 05:28

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

5条回答
  •  再見小時候
    2020-12-16 06:08

    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.

提交回复
热议问题