layout: post

flutter打包依赖下载很慢

subtitle: flutter打包依赖下载很慢 date: 2020-10-19 author: BY header-img: img/post-bg-kuaidi.jpg catalog: true tags: - flutter

flutter打包依赖下载很慢

  • 官方提供的换源

# https://storage.flutter-io.cn
# 加入到环境变量
export PUB_HOSTED_URL=https://pub.flutter-io.cn
export FLUTTER_STORAGE_BASE_URL=https://storage.flutter-io.cn
  • 手动修改


repositories {
        mavenLocal()
        maven { url "https://maven.aliyun.com/repository/central/" }
        maven { url "https://maven.aliyun.com/repository/public/" }
        maven { url "https://maven.aliyun.com/repository/google/" }
        maven { url "https://maven.aliyun.com/repository/gradle-plugin/" }
        mavenCentral()
    }


allprojects {
    repositories {
        mavenLocal()
        maven { url "https://maven.aliyun.com/repository/central/" }
        maven { url "https://maven.aliyun.com/repository/public/" }
        maven { url "https://maven.aliyun.com/repository/google/" }
        maven { url "https://maven.aliyun.com/repository/gradle-plugin/" }
        mavenCentral()
    }
}
  • 重新下载依赖打包

# 清除缓存
flutter clean
gradlew build --refresh-dependencies -d
  • 在命令行运行run的是请关闭安卓真机的adb选择调试应用, 否则需要attach才能进行调试