著论准过秦,作赋拟子虚。这篇文章主要讲述Android版本28使用http请求相关的知识,希望能为你提供帮助。
android版本28使用http请求报错not permitted by network security policy
android模拟器调试登录的时候报错 CLEARTEXT
communication to to 52.76.xx.xxx not permitted by network security policy
2018-10-17 20:42:09.532 18048-18048/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 文件 ,该文件内容如下:
< ?xml version="1.0" encoding="utf-8"?>
< network-security-config>
< base-config cleartextTrafficPermitted="true" />
< /network-security-config>
文章图片
在 AndroidManifest.xml application增加配置android:networkSecurityConfig="@xml/network_security_config"
文章图片
后不报错了
2:服务器和本地应用都改用 https (推荐)
3:targetSdkVersion 降级回到 27
【Android版本28使用http请求】(转载:https://www.cnblogs.com/zdz8207/p/Android-28-http-https.html)
推荐阅读
- Android 8.1 关于应用授权弹框的问题
- android app内部更新适配到8.0
- Android CollapsingToolbarLayout使用介绍
- Rejecting mapping update to [xxx] as the final mapping would have more than 1 type: [xxx, xx]
- Jquery中 .empty和.append
- java.lang.IllegalArgumentException: There is no PasswordEncoder mapped for the id "null"报错
- R中的文本挖掘(《PokémonGO》提及是否真的在推高股价())
- Python中的推荐系统(入门教程)
- Python字符串用法教程