Gradle版本1.10是必需的。当前版本是2.2.1。错误(20,0)未找到Gradle DSL方法:' buildTypes()'

时间:2015-08-13 10:43:00

标签: android android-studio android-gradle build.gradle android-build

当我将现有项目导入android studio时,我收到了错误。我附上了错误消息的屏幕截图.. enter image description here

我们正在使用android studio版本1.2.2。我们的系统是Windows 7 32位

Error:Gradle version 1.10 is required. Current version is 2.2.1. 

请指导我们。

1 个答案:

答案 0 :(得分:0)

检查项目中使用的gradle和gradle插件的版本。

build.gradle(这是gradle插件版本)中,您可以使用:

buildscript {
    repositories {  
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:1.2.3'
    }
}

gradle/wrapper/gradle-wrapper.properties(这是gradle版本)

distributionUrl=http\://services.gradle.org/distributions/gradle-2.4-all.zip

gradle-plugin和gradle版本之间存在关联,它们需要兼容。

检查这些链接以获取完整版兼容性映射表: