dl.google.com:443未能回复

时间:2018-06-04 05:48:51

标签: android gradle

获取错误

  

原因:dl.google.com:443无法回复

以下是build.gradle文件代码

buildscript {

repositories {
    google()
    jcenter()
}
dependencies {
    classpath 'com.android.tools.build:gradle:3.1.2'
    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
}}allprojects {
repositories {
    google()
    jcenter()
}}task clean(type: Delete) {
delete rootProject.buildDir}

dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'com.android.support:appcompat-v7:27.1.1' implementation 'com.android.support.constraint:constraint-layout:1.1.0' testImplementation 'junit:junit:4.12' androidTestImplementation 'com.android.support.test:runner:1.0.2' androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' }

6 个答案:

答案 0 :(得分:2)

编辑 [user] /。gradle / gradle.properties 文件,配置代理,就像这样

#systemProp.https.proxyHost=127.0.0.1
#systemProp.https.proxyPort=1080

答案 1 :(得分:1)

请尝试

dependencies {
    classpath 'com.android.tools.build:gradle:3.1.2'
    classpath 'com.google.gms:google-services:3.1.0' }

在你的gradle中。希望它会对你有所帮助。

答案 2 :(得分:0)

也许您的路径中有汉字,例如gradle路径。 如果您是中国用户,则可以在此处查看我的博客以获取一些解决方案。 http://www.u3coding.com/2018/06/20/androidstudio%e6%8a%a5%e9%94%99dl-google-com%ef%bc%9a443-%e8%ae%bf%e9%97%ae%e5%a4%b1%e8%b4%a5%e8%a7%a3%e5%86%b3%e6%96%b9%e6%a1%88/

答案 3 :(得分:0)

如果使用的是Psiphon,请转到设置-> Http代理,然后输入Psiphon的Http代理号->日志-> Http代理正在localhost ....(number)上运行,然后输入端口号像80一样,让android studio下载想要的thig。

答案 4 :(得分:0)

我必须删除.AndroidStudio3.x,重做代理设置,然后问题就消失了。

答案 5 :(得分:0)

我是一名来自中国的android开发人员,我遇到了与您相同的问题。 这个问题主要是因为我在代理后面。因此,有两个步骤可以为您提供帮助。

  1. 文件->设置->外观和行为->系统设置-> HTTP代理

    然后选择“无代理”选项

  2. gradle.properties目录(此目录通常位于User目录)中找到.gradle文件并进行编辑。删除有关HTTP代理的每一行。我的就是这样

    systemProp.https.proxyPort=1080
    systemProp.http.proxyHost=127.0.0.1
    systemProp.https.proxyHost=127.0.0.1
    systemProp.http.proxyPort=1080