很久没写网络请求了,最近瞅了瞅kotlin感觉好简洁,于是手痒痒,,,就拿郭神的第一行代码上的天气练练手,搞个kt版本玩玩。可是用kt搞网络请求时就跌进坑了。。。。这里记录下解决方案。
1、背景
拿百度的网址“http://www.baidu.com”(注意是http这里)来做测试结果错误就来了:
CLEARTEXT communication to www.baidu.com not permitted by network security policy
2、原因
由于 Android 9.0 限制了明文流量的网络请求,非加密的流量请求都会被系统禁止掉
3、解决
(1)简单粗暴 application节点加句代码
android:usesCleartextTraffic="true"
(2)http 和http有区别的这里不再bb,把你的http换成https即可(也很快)
(3)使用application节点的android:networkSecurityConfig属性
android:networkSecurityConfig="@xml/net"
res 建立xml包 放个xml文件
<?xml version="1.0" encoding="utf-8"?>
<!--节点系统已经定义-->
<network-security-config>
<base-config cleartextTrafficPermitted="true"/>
</network-security-config>
这种方法和(1)类似 还是(1)快捷
(4)targetSdkVersion 降级回到 27
4、付:
1、url在线加密:https://tool.chinaz.com/tools/urlcrypt.aspx
2、参考google官方文档:https://android-developers.googleblog.com/2018/04/protecting-users-with-tls-by-default-in.html