美文网首页
flutter 安卓网页http域名加载失败:ERR_CLEAR

flutter 安卓网页http域名加载失败:ERR_CLEAR

作者: 路有点颠簸 | 来源:发表于2022-05-30 16:21 被阅读0次

iOS:info.plist文件中加入

<key>NSAppTransportSecurity</key>
    <dict>
        <key>NSAllowsArbitraryLoads</key>
        <true/>
    </dict>

安卓

在android-src-main-AndroidManifest.xml的application标签中加入:android:usesCleartextTraffic="true"

<application
        android:label="xxxxxx"
        android:icon="@mipmap/icon_launch"
        android:usesCleartextTraffic="true">

重要:停止程序运行,然后在命令行中执行 flutter clean 即可 (AS在控制台底部Terminal中运行也可)

相关文章

网友评论

      本文标题:flutter 安卓网页http域名加载失败:ERR_CLEAR

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