当前位置:网站首页>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库找不到的问题了!
边栏推荐
- What should I do if I install a solid-state drive in Win10 and still have obvious lags?
- 二叉树的遍历:递归法/ 迭代法/ 统一迭代法(强QAQ)
- MATLAB drawing command fimplicit detailed introduction to drawing implicit function graphics
- [System Design and Implementation] Flink-based distracted driving prediction and data analysis system
- 编译error D8021 :无效的数值参数“/Wextra” cl command line error d8021 invalid numeric argument ‘/wextra‘
- 使用libcurl将Opencv Mat的图像上传到文件服务器,基于post请求和ftp协议两种方法
- pytorch模型转libtorch和onnx格式的通用代码
- 关于c语言的调试技巧
- 网络安全抓包
- 二叉树遍历之后序遍历(非递归、递归)入门详解
猜你喜欢

Detailed introduction to drawing complex surfaces using the plot_surface command

Detailed explanation of MATLAB drawing function plot

推开机电的大门《电路》(二):功率计算与判断

Win11 system cannot find dll file how to fix

Detailed explanation of MATLAB drawing function fplot

第三十一章:二叉树的概念与性质

二叉树的遍历:递归法/ 迭代法/ 统一迭代法(强QAQ)

Yolov5 official code reading - prior to transmission

Network Security Packet Capture

Installation and configuration of Spark and related ecological components - quick recall
随机推荐
为vscode配置clangd
第三十三章:图的基本概念与性质
Software Testing Basics (Back)
Codeforces Round #624 (Div. 3)
pygame image rotate continuously
LeetCode 2343. 裁剪数字后查询第 K 小的数字 暴力+语法考察
第二十六章:二维数组
Knapsack Problem - Dynamic Programming - Theory
jest test, component test
Win10 Settings screen out from lack of sleep?Win10 set the method that never sleep
How to set the win10 taskbar does not merge icons
How to simulate 1/3 probability with coins, and arbitrary probability?
win10 system update error code 0x80244022 how to do
Win11 system cannot find dll file how to fix
基于矩阵计算的线性回归分析方程中系数的估计
Introduction to MATLAB drawing functions ezplot explanation
Redis常见面试题
二叉排序树与 set、map
Detailed introduction to drawing complex surfaces using the plot_surface command
Based on the least squares linear regression equation coefficient estimation