我正在使用android studio构建一个高尔夫记分卡应用程序,昨晚我关闭笔记本电脑之前它正在构建正常,但是,今天早上当我运行Android工作室时我得到了错误"插件太旧了,请更新到更新版本,或将ANDROID_DAILY_OVERRIDE环境变量设置为" aed79d567e57792ed352e708d2b7ca891ff897c6""我的应用程序结构也已更改,并且不再有清单文件夹..... image of app structure``
以下是我的gradle文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "com.example.biko.golfstroke"
minSdkVersion 8
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
}
请帮助,如果你能这么令人沮丧!
答案 0 :(得分:2)
PLZ在rooter gradle文件中更新您的gradle插件版本,如下所示:
classpath' com.android.tools.build:gradle:2.0.0-alpha6'
在here
中查看最新版本的android gradle插件我认为Android工作室应该自己解决这个版本的问题,这是一个手动更改它的糟糕经历。
答案 1 :(得分:0)
我将课程路径更改为:classpath 'com.android.tools.build:gradle:2.0.0-alpha6'
然后点了这篇文章:change distribution url
它解决了...... 谢谢你的帮助!