美文网首页
net::ERR_CLEARTEXT_NOT_PERMITTED

net::ERR_CLEARTEXT_NOT_PERMITTED

作者: 小小的coder | 来源:发表于2021-04-08 16:03 被阅读0次

从Android 9.0(API级别28)开始,默认情况下禁用明文支持。因此http的url均无法在webview中加载

附上我使用的解决办法:
在manifest 中application节点添加

android:usesCleartextTraffic="true"
1
添加后如下:

<?xml version="1.0" encoding="utf-8"?>
<manifest ...>
<uses-permission android:name="android.permission.INTERNET" />
<application
...
android:usesCleartextTraffic="true"
...>
...
</application>
</manifest>

相关文章

网友评论

      本文标题:net::ERR_CLEARTEXT_NOT_PERMITTED

      本文链接:https://www.haomeiwen.com/subject/fvrvkltx.html