我使用Android Studio启动了一个新的Android项目,并出现以下错误:
org.gradle.internal.resource.transport.http.HttpRequestException: Could not HEAD 'https://dl.google.com/dl/android/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.pom'.
答案 0 :(得分:0)
在您的build.gradle Module:app
上尝试一下configurations.all {
resolutionStrategy {
force 'org.hamcrest:hamcrest-core:1.3'
}}
参考:https://docs.gradle.org/current/dsl/org.gradle.api.artifacts.ResolutionStrategy.html
让我知道此方法是否有效。因为如果没有的话,几乎没有其他方法了。