所以,我很高兴地将我的Android Studio从稳定版本2.2更新为canary channel 2.3。
但不幸的是,它有严重的错误。项目无法建立。 我尝试打开我以前的项目,并尝试创建新的示例应用程序,我得到同样的错误:
Gradle 'MyApplication' project refresh failed
Error:A problem occurred configuring project ':app'.
的build.gradle(项目):
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.0-alpha1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
的build.gradle(APP):
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.0"
defaultConfig {
applicationId "com.example.chint.myapplication"
minSdkVersion 16
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.0.0'
compile 'com.android.support.constraint:constraint-layout:1.0.0-alpha7'
compile 'com.android.support:design:25.0.0'
testCompile 'junit:junit:4.12'
}
我是唯一有这个问题的人吗?
答案 0 :(得分:2)
因此,在出现此对话框时要小心:
选择“稍后提醒我”和不“更新”
继续使用您已有的版本。
Incase,你按下了Update,所以只需将build.gradle(project)
中的Android Gradle Plugin类路径回滚到下面一个:
classpath 'com.android.tools.build:gradle:2.2.2'
这对我有用。
答案 1 :(得分:0)
我打了一个类似的问题并通过添加 2个字符来解决它 ......
在将gradle-wrapper.properties
更新为目标3.2.1后,一切对我来说都很棒
distributionUrl=https\://services.gradle.org/distributions/gradle-3.2.1-all.zip
答案 2 :(得分:0)
If you import external libraries apply changes for "allprojects"
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
答案 3 :(得分:0)
您应手动更新Android Studio gradle。
1°步骤
按照此路径获取您的gradle版本
C:\Users\[USER_NAME]\.gradle\wrapper\dists
在这里你会得到“gradle-X.X”(X-版本)在我的情况下它是“gradle-3.3-all”
2°步骤
转到以下链接:
https://services.gradle.org/distributions/
下载相应的版本zip文件,然后将其放在最后一个文件夹中,并使用长随机名称。
C:\Users\[USER_NAME]\.gradle\wrapper\dists\gradle-x.x\55gk2rcmfc6p2dg9u9ohc31212
HERE
现在打开Android工作室,我希望这会有用。