解决 Flutter assemble 长时间卡死后失败问题

软件环境

Flutter 3.19.5 • channel stable • https://github.com/flutter/flutter.git
Framework • revision 300451adae (2 weeks ago) • 2024-03-27 21:54:07 -0500
Engine • revision e76c956498
Tools • Dart 3.3.3 • DevTools 2.31.1

解决方法

需要修改项目中两个文件:

  • gradle/wrapper/gradle-wrapper.properties
  • build.gradle (注意:不是 app/build.gradle)

分别修改这两个文件内的 distributionUrl 路径和仓库地址。

修改 gradle/wrapper/gradle-wrapper.properties

distributionUrl=https\://services.gradle.org/distributions/gradle-x.x.x-all.zip​ 修改为 distributionUrl=https\://mirrors.cloud.tencent.com/gradle/gradle-x.x.x-all.zip​。

也就是将 gradle url 的部分路径 https\://services.gradle.org/distributions/​ 修改为 https\://mirrors.cloud.tencent.com/gradle/​。

以 gradle-7.6.3-all.zip 为例,distributionUrl 修改后的结果如下:

properties 复制代码
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

#distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.3-all.zip
distributionUrl=https\://mirrors.cloud.tencent.com/gradle/gradle-7.6.3-all.zip
修改 build.gradle

repositories​ 添加阿里仓库:

properties 复制代码
maven{ url 'https://maven.aliyun.com/repository/google'}
maven{ url 'https://maven.aliyun.com/repository/gradle-plugin'}
maven{ url 'https://maven.aliyun.com/repository/public'}
maven{ url 'https://maven.aliyun.com/repository/jcenter'}

修改后的结果:

properties 复制代码
allprojects {        
    repositories {        
        maven{ url 'https://maven.aliyun.com/repository/google'}
        maven{ url 'https://maven.aliyun.com/repository/gradle-plugin'}
        maven{ url 'https://maven.aliyun.com/repository/public'}
        maven{ url 'https://maven.aliyun.com/repository/jcenter'}
        google()        
        mavenCentral()        
    }
}

参考文章

https://blog.csdn.net/afunx/article/details/129913028

结束语

本文如有偏颇,恳请斧正。

相关推荐
sunly_17 小时前
Flutter:导航,tab切换,顶部固定,列表分页滚动
开发语言·javascript·flutter
敲代码的小强18 小时前
Flutter项目兼容鸿蒙Next系统
flutter·华为·harmonyos
猿与禅1 天前
jdk17用jmap -hea打印JVM堆信息报错Cannot connect to core dump or remote debug server
jvm·报错·jmap·堆信息
Zh-jie1 天前
flutter 快速实现侧边栏
前端·javascript·flutter
truemi.732 天前
flutter --no-color pub get 超时解决方法
android·flutter
王家视频教程图书馆2 天前
flutter 使用dio 请求go语言后台数据接口展示瀑布流图片
flutter
迷雾漫步者2 天前
Flutter组件————AppBar
flutter·跨平台·dart
AiFlutter2 天前
Flutter 开关属性
flutter
迷雾漫步者2 天前
Flutter组件————Scaffold
flutter·dart
ELI_He9992 天前
[flutter] 容器组件
flutter