Volley Not making request on latest version of Android

前端 未结 4 635
旧巷少年郎
旧巷少年郎 2020-12-10 08:59

I noticed my app wasn\'t working on Pixel 3. I went into android studio and emulated a few devices and noticed it is not working on any Android Pie (API 28) devices, but wor

4条回答
  •  天涯浪人
    2020-12-10 09:36

    It is working well in Pie Api 28

    network_security_config.xml:

    
    
        
            
                
            
        
    
    

    AndroidManifest.xml

    In the android manifest Application Tag, add these lines.

     android:networkSecurityConfig="@xml/network_security_config"
     android:usesCleartextTraffic="true"
    

提交回复
热议问题