Android Studio 2.0 - 此版本的 Android Studio 与使用的 Gradle 插件不兼容。尝试禁用 Instant 运行
Android Studio 2.0 - this version of Android Studio is incompatible with the Gradle Plugin used. Try disabling Instant Run
我更新了AndroidStudio version 2.0 preview 6,用了很久normally.But今天新建项目的时候提示插件太旧,请更新到更新版本,或将 ANDROID_DAILY_OVERRIDE 环境变量设置为
我查找了 link 中的解决方案:
更改了我的 build.gradle(项目)类路径和 gradle-wrapper.properties,但现在项目构建正确但没有 运行,
显示的错误是“此版本的 Android Studio 与使用的 Gradle 插件不兼容。尝试禁用 Instant 运行。 ”
找不到相同的解决方案。我是初学者,如有任何帮助,我们将不胜感激。
我的app/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
}
- 在设置中,搜索
Instant Run
并清除 Enable instant run
热插拔代码。
- 清理项目
我更新了AndroidStudio version 2.0 preview 6,用了很久normally.But今天新建项目的时候提示插件太旧,请更新到更新版本,或将 ANDROID_DAILY_OVERRIDE 环境变量设置为
我查找了 link 中的解决方案:
我的app/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
}
- 在设置中,搜索
Instant Run
并清除Enable instant run
热插拔代码。 - 清理项目