摘要:
android开发flutter项目每次运行都很慢的解决方法 1. 修改依赖库访问源为国内阿里云镜像 构建慢的原因一般都是卡在远程依赖地址访问的速度问题,比如国外镜像的访问,那就改为国内的,比如阿里云的看看能不能解决问题 //阿里云地址配置说明:https://developer.aliyun.co 阅读全文
摘要:
需要ubuntu安装patchelf软件:sudo apt-get install patchelf 1. 先使用readelf -d查看so内容结构 先使用readelf -d libpsl.so.5.3.5 查看libpsl.so.5.3.5库类型是NEEDED和SONAME的对应的名称是不是以 阅读全文
摘要:
Ubuntu20环境下Android开发交叉编译curl库给Android使用 1. 编译zlib库 官网:http://zlib.net/ 解决后面出现的error: --with-openssl was given but OpenSSL could not be detected export 阅读全文
摘要:
openssl编译 本篇文章的操作是在Linux环境之下,在虚拟机ubuntu 20版本上操作的步骤 1. openssl下载解压tar包 openssl下载地址:https://openssl-library.org/source/ 下载完解压:tar -zxvf openssl-3.3.2.ta 阅读全文
摘要:
1. 问题现象 项目构建成功,运行的时候出现Gradle build failed to produce an .apk file. It's likely that this file was... 2. 原因分析 运行项目没有选择好项目当中支持发flavor,导致没方法构建出相应flavor的a 阅读全文
摘要:
1. 问题描述 [ +103 ms] FAILURE: Build failed with an exception. [ ] * What went wrong: [ ] Execution failed for task ':jpush_flutter:bundleDebugAar'. [ ] 阅读全文
摘要:
flutter项目适配鸿蒙HarnomyNext系统步骤记录 本人是在Window环境下开发 第一:环境搭建 1. 下载鸿蒙next开发工具DevEcho Studio,类似Android Studio的工具,页面都类似 鸿蒙开发套件官方下载地址:https://developer.huawei.c 阅读全文
摘要:
1. android studio修改当个项目的flutter版本,不影响其他项目工程的flutter编译版本 1.1 项目右上角点击‘设置’图标,选择Settings...进去到项目的设置页面,选择flutter sdk路径 1.2 项目右上角点击‘设置’图标,选择Settings...进去到项目 阅读全文
摘要:
Invalid argument(s): Illegal argument in isolate message: object is unsendable - Library:'dart:async' Class 1. 问题原因: 使用flutter isolate的时候新开的isolate访问了 阅读全文
摘要:
android手机安装termux 下载地址:https://github.com/termux/termux-app/releases 下载下来是一个apk文件,和安装其他普通应用一样 切换依赖库下载源 打开termux之后是一个cmd窗口,输入termux-change-repo(比较新的版本才 阅读全文