dar pub上传失败如何解决

Posted meetqy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了dar pub上传失败如何解决相关的知识,希望对你有一定的参考价值。

问题: Flutter Exception: Pub will wait for a while before trying to connect again.

解决

  1. 设置终端代理
export http_proxy=http://127.0.0.1:1080;
export https_proxy=http://127.0.0.1:1080;

2.使用curl google.com测试是否连通

curl google.com

3.禁用设置的镜像源

unset FLUTTER_STORAGE_BASE_URL;
unset PUB_HOSTED_URL;

4.检查是否可上传

flutter packages pub publish --dry-run --server=https://pub.dartlang.org

5.上传

flutter packages pub publish --server=https://pub.dartlang.org

以上是关于dar pub上传失败如何解决的主要内容,如果未能解决你的问题,请参考以下文章

Cloudinary上传php失败,如何解决?

上传到 iTunes Connect 时如何解决“应用程序代码验证失败”?

如何解决rar文件解压缩失败

IIS上传大于4MB文件失败的解决方法

如何解决 MemoryError:Micropython 的内存分配失败?

将项目上传到github时如何解决“拒绝合并不相关的历史”?