我更新了Android Studio 2.0版本的預覽版6並且正常使用時間很長。但是當我今天創建一個新項目時,它顯示錯誤插件太舊,請更新到更新版本,或者ANDROID_DAILY_OVERRIDE環境變量設置爲Android Studio 2.0 - 此版本的Android Studio與所用的Gradle插件不兼容。嘗試禁用即時運行
我看着它找到像在鏈路解決方案: Android Studio 2.0 - Plugin is too old, please update to a more recent version, or set ANDROID_DAILY_OVERRIDE environment variable to 改變了我的build.gradle(項目)的類路徑和gradle-wrapper.properties,但目前該項目建立正常,但不運行, 顯示的錯誤是「此版本的Android Studio與所使用的Gradle插件不兼容,請嘗試禁用即時運行「 找不到任何解決方案。我是初學者,任何幫助將不勝感激。
我的應用程序/的build.gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 'Google Inc.:Google APIs:23'
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "com.example.timercheck"
minSdkVersion 15
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.+'
compile 'com.android.support:design:23.+'
}
我的build.gradle(項目)
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.0.0-beta6'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
打開設置和檢查你使用哪個版本的Gradle .. 注意你需要使用最新的一個爲Android的工作室 –
http://tools.android.com/tech-docs/instant - 運行請檢查它 –
https://jcenter.bintray.com/com/android/tools/build/gradle/在這裏所有插件可用... –