Android Studio报:Connection timed out: connect. If you are behind an HTTP proxy错误

Android Studio新建Project后无法运行项目操作

IDE提示:Connection timed out: connect. If you are behind an HTTP proxy, please configure the proxy settings either in IDE or Gradle.
错误提示如下图所示
Android Studio报:Connection timed out: connect. If you are behind an HTTP proxy错误_第1张图片
笔者在昨天还可以正常运行的AS,到了今天缺无法正常使用,期间什么都没有做,那到底是什么原因引起的呢?
答:

  1. 因为AS的使用需要联网,当前网络不好造成的
  2. 笔者使用的是大学学校内部的校园网

笔者首先尝试给笔记本电脑更换网络,从校园网换到了手机5G热点
Android Studio报:Connection timed out: connect. If you are behind an HTTP proxy错误_第2张图片
但还是没有解决这个问题

于是尝试在代码中加入国内镜像代码
在Project视图下打开文件build.gradle文件
Android Studio报:Connection timed out: connect. If you are behind an HTTP proxy错误_第3张图片
分别在buildscript中的repositories和allprojects中的repositories添加如下代码

		maven() {
     
            url 'https://maven.aliyun.com/repository/jcenter'
        }
        maven(){
     
            url 'https://maven.aliyun.com/repository/google'
        }
        maven {
     
            url 'https://maven.aliyun.com/repository/public'
        }
        maven {
     
            url 'https://maven.aliyun.com/repository/mapr-public'
        }

这串代码的意思是国内镜像可以让速度变快
Android Studio报:Connection timed out: connect. If you are behind an HTTP proxy错误_第4张图片

添加完成后保存,重启AS
Android Studio报:Connection timed out: connect. If you are behind an HTTP proxy错误_第5张图片
AS恢复正常 (这个过程也要等上个1分钟左右)

笔者的问题已经解决了

你可能感兴趣的:(android,安卓,java,android,studio)