概述
android应用内跳转WebView出现如标题的报错信息,
原因是从Android 6.0开始引入了对Https的推荐支持,与以往不同,Android P的系统上面默认所有Http的请求都被阻止了。
解决方法如下:
在清单文件里加入android:usesCleartextTraffic="true"这句即可
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:usesCleartextTraffic="true"
android:theme="@style/AppTheme">
最后
以上就是淡然蜜蜂为你收集整理的WebView显示net:ERR_CLEARTEXT_NOT_PERMITTED的全部内容,希望文章能够帮你解决WebView显示net:ERR_CLEARTEXT_NOT_PERMITTED所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复