当前位置:网站首页>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库找不到的问题了!
边栏推荐
- 7.Redis
- How to add a one-key shutdown option to the right-click menu in Windows 11
- 二叉排序树与 set、map
- 推开机电的大门《电路》(二):功率计算与判断
- pygame绘制弧线
- Open the door of power and electricity "Circuit" (2): Power Calculation and Judgment
- 总结计算机网络超全面试题
- 1.开发社区首页,注册
- Win7 encounters an error and cannot boot into the desktop normally, how to solve it?
- GMP scheduling model of golang
猜你喜欢

How to add a one-key shutdown option to the right-click menu in Windows 11

golang之GMP调度模型

Yolov5 official code reading - prior to transmission

将SSE指令转换为ARM NEON指令

【离散化+前缀和】Acwing802. 区间和

Lightweight AlphaPose

STM32LL库——USART中断接收不定长信息

远程连接Ubuntu中的Mysql

A clean start Windows 7?How to load only the basic service start Windows 7 system

Summarize computer network super comprehensive test questions
随机推荐
深入理解Golang之Map
剑指offer:合并两个排序的链表
Win7 encounters an error and cannot boot into the desktop normally, how to solve it?
5. Transaction management
pygame image rotate continuously
Win10 cannot directly use photo viewer to open the picture
关于c语言的调试技巧
STM32LL library use - SPI communication
Publish module to NPM should be how to operate?Solutions to problems and mistake
Win11 computer off for a period of time without operating network how to solve
永久更改pip源
2.登录退出,登录状态检查,验证码
What is Win10 God Mode for?How to enable God Mode in Windows 10?
GMP scheduling model of golang
基于最小二乘法的线性回归分析方程中系数的估计
二叉树的遍历:递归法/ 迭代法/ 统一迭代法(强QAQ)
Based on the least squares linear regression equation coefficient estimation
mysql的索引结构为什么选用B+树?
Golang 垃圾回收机制详解
测试用例练习