Android版本28使用http请求报错not permitted by network security policy

一、前言:

Android版本28使用http请求报错not permitted by network security policy

android模拟器调试登录的时候报错 CLEARTEXT communication to to 52.76.xx.xxx not permitted by network security policy

com.aax.exchange E/ProgressObserver____: onError:
java.net.UnknownServiceException: CLEARTEXT communication to 52.76.xx.xxx not permitted by network security policy

问题: 由于 Android P(版本27以上) 限制了明文流量的网络请求,非加密的流量请求都会被系统禁止掉。
如果当前应用的请求是 htttp 请求,而非 https ,这样就会导系统禁止当前应用进行该请求。

推荐的做法 是服务器和本地应用都改用 https ,测试时为了方便使用http,上线时应该都会用https才比较安全。

二、解决办法:

方式一:

  1. 在 res 下新建一个 xml 目录,然后创建一个名为:network_security_config.xml 文件 ,该文件内容如下:




aaaa.png
  1. 在 AndroidManifest.xml application增加配置android:networkSecurityConfig="@xml/network_security_config"
bbbb.png

后不报错了

方式二:

服务器和本地应用都改用 https (推荐)

方式三:

targetSdkVersion 降级回到 27

你可能感兴趣的:(Android版本28使用http请求报错not permitted by network security policy)