本文主要是介绍java.net.UnknownServiceException: CLEARTEXT communication to 192.168.20.142 not permitted by network,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
项目运行出现异常:
出现原因:因为 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"
然后重新编译运行就可以啦
这篇关于java.net.UnknownServiceException: CLEARTEXT communication to 192.168.20.142 not permitted by network的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!