项目运行出现异常:
出现原因:因为 Android P 是默认禁止访问http的API的 所以想要跳过https的限制要这样做
处理方案:在res文件夹下创建xml目录,新建network_https_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"
然后重新编译运行就可以啦