问题描述
- android studio 提示build plugin too old 卡在这里了求帮助
-
Error:(1, 0) Plugin is too old, please update to a more recent version, or set ANDROID_DAILY_OVERRIDE environment variable to "a8faa180fc282060c9b8ec88f9bdcc9072121284"
Fix plugin version and sync project
Open File感觉这个问题导致,项目都不能导进v4包下得viewpager了,昨天还好好的能运行,今天一早起来就提示错误。找了几个小时也没找到解决办法
解决方案
Android问题集锦之三十一:Android Studio: Plugin with id 'android-library' not found
Android-Android studio 出现 Error: NDK integration is deprecated in the current plugin. 问题解决
导入android studio 项目错误:Error:(1, 0) Plugin with id 'com.android.application' not found
解决方案二:
你把build.grade代码贴出来看看
解决方案三:
你android studio是不是最近安装了插件,显示你的查询版本过低,归根结底,还是gradle配置的问题。
解决方案四:
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.2.3'
}
}
你改一下,classpath最后面的gradle的版本
解决方案五:
你是项目中是不是导入多个V4包了?
解决方案六:
估计你是更新了Android Studio,然后旧的Gradle 用不了,
dependencies {
classpath 'com.android.tools.build:gradle:1.5.0'
}
setting-> project struct -> gradle 改成 2.5
如果再不行就更新SDK吧