我最近更新了我的Android Studio。 更新后,当我尝试导入或打开项目时,它会出现以下错误:
Gradle Sync Issue
Error:Error:Gradle 2.4 requires Android Gradle plugin 1.2.0 (or newer) but project is using version 1.1.0.
Please use Android Gradle plugin 1.2.0 or newer.
Fix plugin version and sync project
这个问题有解决办法吗?
答案 0 :(得分:2)
更改progect build.gradle文件
{{1}}
答案 1 :(得分:2)
在build.gradle中,您应该使用更新版本的gradle插件。
使用sub_filter "https://domain1.com" "https://domain2.com";
sub_filter_once off;
代替classpath 'com.android.tools.build:gradle:1.3.1'
。或者至少1.2.0,正如错误所指出的那样。
答案 2 :(得分:2)
由于Android Studio刚刚正式更新为1.3 (Gradle也是如此)。
请将 gradle版本更改为1.3。+ build.gradle 。它现在应该是这样的:
dependencies {
classpath 'com.android.tools.build:gradle:1.3.+'
// in the individual module build.gradle files
}
答案 3 :(得分:-1)
我也遇到了这个问题。修改依赖项的东西让我很困惑。来自@Mykaelos answer,对于Windows Android Studio,请转到文件>设置> "构建,执行,部署" > "构建工具" > Gradle并将其更改为"使用默认的gradle包装器(推荐)",我在凌晨试过,它对我有用。