Could not resolve io.flutter:arm64

换了个电脑,新建flutter工程,提示
Could not resolve io.flutter:arm64_v8a_debug 错误,
意思是这个库下载不下来。
修改了下maven仓库地址,可以下载下来了(非常慢,可能花了20min)

allprojects {
    repositories {

        maven { url "http://download.flutter.io" }
        maven { url "https://storage.googleapis.com/download.flutter.io" }
        google()
        jcenter()
    }
}

你可能感兴趣的:(Could not resolve io.flutter:arm64)