当前位置:网站首页>couldn't find 'libflutter.so' --flutter
couldn't find 'libflutter.so' --flutter
2022-08-02 14:11:00 【海无垠】
由于 libflutter.so 的问题,或者说是安卓编译架构的问题,在编译运行后打开flutter显示的那个页面可能会出现 couldn’t find libflutter.so 的问题,解决办法是只使用 armeabi-v7a, 具体配置是修改 app/build.gradle 文档,如下:
android{
defaultConfig{
ndk {
abiFilters “armeabi-v7a”, “x86”
}
}
buildTypes {
debug {
ndk {
abiFilters “armeabi-v7a”, “x86”
}
}
release {
ndk {
abiFilters “armeabi-v7a”
}
}
}
}
按照以上配置,就不会出现so库找不到的问题了!
边栏推荐
- Win11 keeps popping up User Account Control how to fix it
- 总结计算机网络超全面试题
- How to add a one-key shutdown option to the right-click menu in Windows 11
- Mysql的锁
- 将SSE指令转换为ARM NEON指令
- Spark及相关生态组件安装配置——快速回忆
- Introduction to in-order traversal (non-recursive, recursive) after binary tree traversal
- What should I do if Windows 10 cannot connect to the printer?Solutions for not using the printer
- 剑指offer:合并两个排序的链表
- TCP三次握手、四次挥手
猜你喜欢
Detailed explanation of MATLAB drawing function plot
Open the door to electricity "Circuit" (3): Talk about different resistance and conductance
5.事务管理
Win7 encounters an error and cannot boot into the desktop normally, how to solve it?
Based on the least squares linear regression equation coefficient estimation
Network Security Packet Capture
cmake configure libtorch error Failed to compute shorthash for libnvrtc.so
【离散化+前缀和】Acwing802. 区间和
Introduction to in-order traversal (non-recursive, recursive) after binary tree traversal
[System Design and Implementation] Flink-based distracted driving prediction and data analysis system
随机推荐
Article pygame drag the implementation of the method
Based on the matrix calculation in the linear regression equation of the coefficient estimates
golang之GMP调度模型
Project: combing the database table
二叉树创建之层次法入门详解
Mapreduce环境详细搭建和案例实现
一篇文章彻底理解Redis的持久化:RDB、AOF
How to add a one-key shutdown option to the right-click menu in Windows 11
【STM32学习1】基础知识与概念明晰
求解斐波那契数列的若干方法
MATLAB drawing command fimplicit detailed introduction to drawing implicit function graphics
利用plot_surface命令绘制复杂曲面入门详解
【离散化+前缀和】Acwing802. 区间和
GMP scheduling model of golang
Summarize computer network super comprehensive test questions
How to set the win10 taskbar does not merge icons
LeetCode 2354. 优质数对的数目 二进制01表示和集合之间的转换
推开机电的大门《电路》(二):功率计算与判断
Mysql connection error solution
Detailed explanation of Golang garbage collection mechanism