本文介绍: ReactNative WebView 加载网址出错:net::ERR_CLEARTEXT_NOT_PERMITTED在开发时显示是正常的,但在 release 中的 apk 中却出错。原因是因为访问的是 http 而不是 https 网址。默认情况下 webView 是不允许直接访问非 https 的网址的解决办法在 android/app/src/main/AndroidManifest.xml 中 的 application 字段中添加android:usesCleartextTraffi
ReactNative WebView 加载网址出错:net::ERR_CLEARTEXT_NOT_PERMITTED
在开发时显示是正常的,但在 release 中的 apk 中却出错。
原因
是因为访问的是 http 而不是 https 网址。默认情况下 webView 是不允许直接访问非 https 的网址的
解决办法
在 android/app/src/main/AndroidManifest.xml
中 的 application
字段中添加
android:usesCleartextTraffic="true"
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.demoapk">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:name=".MainApplication"
android:label="@string/app_name"
android:icon="@mipmap/appicon"
android:roundIcon="@mipmap/appicon_round"
android:allowBackup="false"
android:usesCleartextTraffic="true"
android:theme="@style/AppTheme">
<activity
android:screenOrientation="landscape"
android:name=".MainActivity"
android:label="@string/app_name"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode"
android:launchMode="singleTask"
android:windowSoftInputMode="adjustResize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
原文地址:https://blog.csdn.net/KimBing/article/details/123092751
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_29392.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。