目前,我在尝试解决android studio中的旧插件错误时遇到了麻烦。我收到以下错误,但不知道如何解决
问题。 stackoverflow中也有类似的问题,但是没有一个解决方案有帮助。这里有人知道解决方案吗?
如果可以的话,一些逐步的解释将是很棒的!我想从你这里来!
错误:(1,0)插件太旧,请更新到较新的版本
版本,或将环境变量ANDROID_DAILY_OVERRIDE设置为
“ fabe6db51edae26ca766bdae73”
最佳答案
在项目的build.gradle文件中,在依赖项部分更改buildscript块
dependencies {
classpath 'com.android.tools.build:gradle:something'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
为了这
dependencies {
classpath 'com.android.tools.build:gradle:2.0.0-alpha3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
广告同步。