• flutter emulator "libflutter.so" not found虚拟机debug时出现找不到libflutter.so的错误


    通过stackoverflow找到答案

    根据文档显示: adbfilters没有填写 'x86', 'x86_64'时,会阻止app安装到 x86 android 设备;表现结果就是无法在本地模拟器上运行应用程序,但是物理连接的 android 设备构建良好。

    修改文件位置:andirod/app/build.guadle,替换为如下内容

        ndk { 
            abiFilters 'x86', 'x86_64', 'armeabi', 'armeabi-v7a', 'mips', 'mips64', 'arm64-v8a' 
        }
    

      

     原文地址

    https://stackoverflow.com/questions/66363437/flutter-release-bundle-or-apk-crash-on-start-dlopen-failed-library-libflutter

  • 相关阅读:
    Nginx 跨域配置支持
    数据结构与算法分析
    数据结构与算法分析
    数据结构与算法分析
    Bash shell
    Bash shell
    HHUOJ 1040
    HHUOJ 1114
    HDUOJ 1171
    HDUOJ 1428
  • 原文地址:https://www.cnblogs.com/jasonyou/p/16417710.html
Copyright © 2020-2023  润新知