flutter build apk --release 构建 apk 文件但在 Android 上安装后出现错误

flutter build apk --release build the apk file but it give error after installing on Android

我使用 webview_flutter: ^1.0.7 包将 google 网站转换为 android 的 Web 应用程序,当我 运行 我的物理设备中的代码通过将其设为外部模拟器应用程序时工作完美,但是当我使用 flutter build apk --release 构建 APK 时,我得到了 APK 文件,当我在打开应用程序后安装 APK 时,它说 Web page not available 你可以看到下图。我认为它无法通过互联网连接

当我通过制作我的设备模拟器来安装应用程序时 运行 完美你可以在下面看到

如果您需要有关此的更多信息,请发表评论。

android\app\src\main\AndroidManifest.xml 添加互联网权限

示例:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.test">

    <uses-permission android:name="android.permission.INTERNET" /> // add this line

   <application
        android:label="test1"
        android:name="${applicationName}"
        android:icon="@mipmap/ic_launcher">

访问此页面了解更多信息INTERNET PERMISSION