问题:
在进行网络请求时,日志中打印
CLEARTEXT communication to XX not permitted by network security policy
原因:
Android P系统网络访问安全策略升级,限制了非加密的流量请求
Android P系统限制了明文流量的网络请求,之下的版本没有影响,所以okhttp3会抛出该异常。
解决方案:
方案1:降低目标版本,app/build.gradle中targetSdkVersion 设置27或以下
方案2:http请求改成https
方案3:添加网络安全配置。
1)在应用的 res/xml/中创建network_security_config.xml 文件,文件名可自定义。
<!-- network_security_config.xml -->
<?xml version ="1.0" encoding ="utf-8"?>
<network-security-config>
<base-config cleartextTrafficPermitted="true" />
</network-security-config>
2)在AndroidManifest.xml文件中的 Application 标签中添加 android:networkSecurityConfig=“@xml/network_security_config”文章来源:https://www.toymoban.com/news/detail-509956.html
<application
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:networkSecurityConfig="@xml/network_security_config">
...
</application>
方案4:添加usesCleartextTraffic属性。
在 在AndroidManifest.xml文件中的 Application 标签中添加 android:usesCleartextTraffic=“true”文章来源地址https://www.toymoban.com/news/detail-509956.html
<application
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:usesCleartextTraffic="true">
...
</application>
到了这里,关于网络请求未知错误 CLEARTEXT communication to XX not permitted by network security policy 问题解决方案的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!