我设置了android studio 2.2,我的sdk包含api 23以及api 24。 我的build.gradle文件如下:
apply plugin: 'com.android.application'
android {
compileSdkVersion 24
buildToolsVersion "24.0.2"
defaultConfig {
applicationId "com.example.sanjay.myapplication"
minSdkVersion 15
targetSdkVersion 24
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:24.2.1'
compile 'com.android.support.constraint:constraint-layout:1.0.0-alpha1'
testCompile 'junit:junit:4.12'
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.2'
androidTestCompile 'com.android.support.test:runner:0.5'
androidTestCompile 'com.android.support:support-annotations:24.2.1'
}
我收到以下错误:
Error:(1, 0) Plugin is too old, please update to a more recent version, or set ANDROID_DAILY_OVERRIDE environment variable to "9d813ee66dd60f65615706c5deaa14afed669ca5"
Fix plugin version and sync project</a><br><a href="openFile:E:\MyApplication2\app\build.gradle">Open File</a>
请让我知道,这里出了什么问题,谢谢。
答案 0 :(得分:0)
如果显示此类错误(插件太旧,请更新到更新版本,修复插件版本和同步项目),请点击修复插件版本和同步项目,它出现在log cat中。 Gradle会同步,你很高兴。
答案 1 :(得分:0)
将您的项目级别Build.gradle
更新为
dependencies {
classpath 'com.android.tools.build:gradle:2.2.0'
}
答案 2 :(得分:0)
从https://gradle.org/gradle-download/和。下载最新的gradle 转到:构建,执行,部署 - &gt;&gt;构建工具 - &gt;&gt; Gradle(或者只需输入搜索栏Gradle) 选择:(X)使用本地gradle分发并将Gradle home设置为提取的Gradle目录。点击“申请”。
将Project Build.gradle更新为
dependencies
{
classpath 'com.android.tools.build:gradle: "latest version here" '
}