Flutter - Plugin发布
Plugin发布
- 执行 flutter pub publish --dry-run 检查是否具备发布条件
遇到的问题
It‘s strongly recommended to include a “homepage“ or “repository“ field
解决方案:
在 pubspec.yaml 中配置 主页 homepage 地址 :
homepage: https://github.com/author/gitname.git
curl google.com 检测终端代理是否成功连接google服务器
export http_proxy=http://127.0.0.1:10818
export https_proxy=http://127.0.0.1:10818
仅能保证当前终端一次性连接成功
1 | # proxy |
source ~/.zshrc
终端命令
proxy 开启代理
noproxy 关闭代理发布插件
1 | flutter packages pub publish --server=https://pub.dartlang.org |