运行flutter项目时,配置根项目'android'时发生问题

时间:2020-11-03 21:18:31

标签: android ios flutter dart genymotion

第一次运行flutter项目时出现此错误

FAILURE: Build failed with an exception.

* What went wrong:
A problem occurred configuring root project 'android'.
> Could not resolve all artifacts for configuration ':classpath'.
   > Could not resolve com.android.tools.build:gradle:3.5.0.
     Required by:
         project :
      > Could not resolve com.android.tools.build:gradle:3.5.0.
         > Could not get resource 'https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.5.0/gradle-3.5.0.pom'.
            > Could not GET 'https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.5.0/gradle-3.5.0.pom'.
               > Remote host closed connection during handshake

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

* Get more help at https://help.gradle.org

BUILD FAILED in 1m 2s
Finished with error: Gradle task assembleDebug failed with exit code 1

我该如何解决? 请注意,我正在genymotion

上运行一个项目

2 个答案:

答案 0 :(得分:1)

您的互联网无法正常工作,或者在gradle中添加google()。

类似的东西

allprojects {
repositories {
    google()
    jcenter()
}

}

答案 1 :(得分:0)

您能否添加build build.gradle文件,以便我们可以查看出现了什么问题