【发布时间】:2025-11-28 06:45:05
【问题描述】:
gradle 同步中的连接超时错误,在 android studio 3.3 中用于示例 hello world 应用程序。 早些时候,它在 android studio 设置中的 http 设置中没有设置代理。 我已经尝试过堆栈溢出的其他解决方案。看起来 gradle 无法从所有网址下载。 现在完全卸载后重新安装工作室。 更新 重新安装后问题依旧。
有时从 GUI 构建干净根本不会做任何事情。
项目级 Build.gradle 文件 ** *构建文件,您可以在其中添加所有子项目/模块通用的配置选项。
buildscript {
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
**
应用级 build.gradle 文件
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.example.myapplication"
minSdkVersion 15
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:design:28.0.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'
}
更新
格式化我的 windows 10 和新安装的开发工具后,现在抛出 Gradle Sync Failed: Read timeout error
【问题讨论】:
-
如果您要重新安装 android studio 那么问题到底是什么?您可以在这里发布您的 build.gradle 文件吗?
-
这是网络问题,请检查您的网络连接。也许某些防火墙阻止了您。
-
@Umair,请查看我的更新。
-
@VikasPandey 亨利说这是一个互联网连接问题。请检查您的连接或防火墙。此外,如果您想离线工作,请点击此链接:*.com/questions/42516117/…
-
@umair,发布了我的 build.gradle 文件
标签: android android-studio gradle android-gradle-plugin connection-timeout