我刚刚从Android Studio 3.0.1升级到3.1,现在我无法为我的任何项目构建或使用编辑器。Gradle正在尝试同步,但一直未能下载一些。pom文件尽管我可以在浏览器中下载,但我没有使用代理,我的防火墙也没有出站限制。我试过了
卸载Kotlin插件
和
清除缓存/重新启动
而我就是无法建造。我甚至无法让它构建/同步全新的、完全空的项目。有人知道如何解决这个问题吗?
Android Studio 3.1
Build #AI-173.4670197, built on March 22, 2018
JRE: 1.8.0_152-release-1024-b02 amd64
JVM: OpenJDK 64-Bit Server VM by JetBrains s.r.o
Windows 7 6.1
这是一个新的空项目,创建大约10分钟后:
这是一个现有项目,在升级之前一直在建设中。现在,它只是花时间尝试从多个站点下载此文件,然后失败,出现与上图中相同的错误:
编辑:生成。gradle(项目)
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.0'
// 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
}
编辑:生成。gradle(模块)
apply plugin: 'com.android.application'
android {
compileSdkVersion 27
defaultConfig {
applicationId "com.stredgic.servicenotificationdev"
minSdkVersion 21
targetSdkVersion 27
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
}