上一页 1 2 3 4 5 6 ··· 24 下一页
摘要: 1. 进入Flutter SDK安装目录 2. 执行git命令 git checkout <版本号>,比如 git checkout 2.0.4 阅读全文
posted @ 2022-07-14 13:21 GreatK 阅读(394) 评论(0) 推荐(0) 编辑
摘要: 1. 删除Flutter安装目录中的bin/cache目录,然后尝试flutter doctor -v 2. flutter clean 3. fluter build ios (这里不需要添加 --release 参数,至少我这里试下来不需要) 感谢作者(https://www.uedbox.co 阅读全文
posted @ 2022-06-28 15:02 GreatK 阅读(468) 评论(0) 推荐(0) 编辑
摘要: 这个问题主要源于iOS的安全策略,所以解决这个问题就要从iOS入手。方法如下(感谢作者:https://github.com/flutter/flutter/issues/33464#issuecomment-497055810): For the WebView: - ADD this in io 阅读全文
posted @ 2022-06-27 18:03 GreatK 阅读(276) 评论(0) 推荐(0) 编辑
摘要: 有时会遇到Docker Container stuck然后无法停掉的问题,这个时候可以通过kill方法强行停掉 1. 找出container所在的process id ps aux | grep <<container>> | awk '{print $1 $2}' 随后会输出 <<user>><< 阅读全文
posted @ 2022-05-07 15:38 GreatK 阅读(1699) 评论(0) 推荐(0) 编辑
摘要: 参考这篇文章搭建隧道 https://juejin.cn/post/6844903508513128455 但是访问MySQL服务时,报Access denied for user 'xxx'@'localhost'的错误。检查下来,原来是因为文章中使用 ssh -R 3306:127.0.0.1: 阅读全文
posted @ 2022-03-11 17:05 GreatK 阅读(236) 评论(0) 推荐(0) 编辑
摘要: WEB运行: flutter run -d chrome --web-renderer html WEB打包: flutter build web --web-renderer html 重建丢失的ios或者其它目录 flutter create . 阅读全文
posted @ 2021-12-16 15:53 GreatK 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 当升级Mac后,执行gradle build命令时,出现了报错提示: Kotlin could not find the required JDK tools in the Java installation 原因是Mac升级后,会重新安装JRE,并且设置为默认JAVAHOME,解决办法如下: 首先 阅读全文
posted @ 2021-11-25 15:14 GreatK 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 打开Nginx的配置文件中,在对应的反代域名下,添加 proxy_connect_timeout 300; proxy_send_timeout 300; proxy_read_timeout 300; send_timeout 300; 即可。 阅读全文
posted @ 2021-11-24 11:46 GreatK 阅读(1413) 评论(0) 推荐(0) 编辑
摘要: 过完国庆,发现部署的任务系统,无法访问自己的其它系统接口了,报的错是 certificate has expired,可是这个证书还有2个月才过期呀。一查下来才知道,原来是Let's Encrypt把DST Root CA X3改成了ISRG Root X1,导致低于openssl 1.1版本的,都 阅读全文
posted @ 2021-10-09 13:26 GreatK 阅读(778) 评论(0) 推荐(0) 编辑
摘要: 一句话:sdk use gradle 5.3 阅读全文
posted @ 2021-08-24 13:42 GreatK 阅读(203) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 24 下一页