我正在使用Android工作室版本2.2预览版4.我在打开IDE时遇到错误。 错误 :( 1,0)插件太旧,请更新到更新版本,或将ANDROID_DAILY_OVERRIDE环境变量设置为“e71316b1598b09073ff04c4315280c3b0e755860” 摇篮:
options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.0-alpha4'
here; they belong
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
答案 0 :(得分:1)
您之所以收到该错误,是因为您使用的是近2年的Android Studio版本。根据{{3}},Android Studio 2.2 stable于2016年9月19日发布。
由于使用Android Studio的更新管理器没有从2.x到3.x的直接升级路径,我建议Android Studio this page(撰写本文时为3.1.2)和导入现有项目。
答案 1 :(得分:0)
首先,您必须更新Android Studio,所以请转到:
帮助 - >检查更新...
Mac中的: Android Studio>检查更新
此外,您还必须将构建工具更新为最新版本,如下所示:
classpath 'com.android.tools.build:gradle:3.1.3'