美文网首页
flutter -报错集锦(遇到啥更啥)

flutter -报错集锦(遇到啥更啥)

作者: crossroads | 来源:发表于2024-05-15 15:43 被阅读0次

    1. android: App requires Multidex support
    在运行安卓时,引入方法过多会报 App requires Multidex support。
    在android/app/src/main/AndroidManifest.xml中加 android:name
    <application
    android:name="androidx.multidex.MultiDexApplication"
    />
    在app的build.gradle中加入 multiDexEnabled true
    defaultConfig {
    applicationId "com.example.finka_main.host"
    ...
    multiDexEnabled true
    }

    2. ios: Unable to boot the Simulator
    Unable to boot the Simulator. Domain: NSPOSIXErrorDomain Code: 60 Failure...
    在活动监视器搜xcode强制关闭xcode,然后将simulator相关进程强制关闭

    如果你没有退出Xcode,强制退出这些进程之后,会重启。

    3.代码没问题,缓存有问题
    修复步骤:1. 把编译失败提示的路径下的缓存文件删掉 2. 删除lock文件,如果不行则所有黄色的编译出的文件 3.重新pub get (pub upgrade可选)

    参考网址

    https://www.cnblogs.com/ficow/p/18090763

    相关文章

      网友评论

          本文标题:flutter -报错集锦(遇到啥更啥)

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