java - 错误 :android-apt plugin is incompatible with the Android Gradle plugin. 请改用 'annotationProcessor' 配置

标签 java android

i got this error Error:android-apt plugin is incompatible with the Android Gradle plugin. Please use 'annotationProcessor' configuration instead. when i am adding butterknife is ther any thing wrong i am doing with dependency adding what dependancy should i use for latest android studio

build.gradle(module:app) 文件如下

apply plugin: 'com.android.application'
apply plugin: 'android-apt'
android {
    compileSdkVersion 26
    buildToolsVersion '26.0.2'
    defaultConfig {
        applicationId "com.example.sony.welcomefilemanager"
        minSdkVersion 16
        targetSdkVersion 26
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        vectorDrawables.useSupportLibrary = true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation 'com.android.support:support-v4:26.1.0'
    compile fileTree(dir: 'libs', include: ['*.jar'])
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile 'com.android.support:appcompat-v7:26.+'
    compile 'com.android.support:design:26.+'
    compile 'com.android.support:support-vector-drawable:26.+'
    compile 'com.android.support:design:26+'
    compile 'com.android.support:recyclerview-v7:26+'
    compile 'com.android.support:cardview-v7:26.+'
    compile 'com.jakewharton:butterknife:7.0.1'
    apt 'com.jakewharton:butterknife-compiler:8.0.1'
    testCompile 'junit:junit:4.12'
}

build.gradle(project) 文件如下

buildscript {
    repositories {
        jcenter()
        google()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.0.0'
        classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
        google()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

最佳答案

android-apt 插件已被弃用

As of the Android Gradle plugin version 2.2, all functionality that was previously provided by android-apt is now available in the Android plugin.

  • Make sure you are on the Android Gradle 2.2 plugin or newer.
  • Remove the android-apt plugin from your build scripts
  • Change all (if any) apt, androidTestApt and testApt dependencies to their new format

关于java - 错误 :android-apt plugin is incompatible with the Android Gradle plugin. 请改用 'annotationProcessor' 配置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47268938/

相关文章:

android - 在没有应用程序的情况下测试 firebase 云消息传递

java - 在 Java 中创建自定义解释器 : Where to start from?

java - 在 Java SE6 中使用 <?> 进行模板化有什么作用?

java - 从 java 应用程序发送邮件而不使用外部 SMTP 服务器

android - C 编译器 "clang.exe"无法编译简单的测试程序

java - 如何在横向模式下检测方向

java - Eclipse 创建您自己的 system.out.println 快捷方式

java - 删除 jtable 中的单元格边框

java - 如何为 API 23、19 及以下版本制作重复警报

Android - RecyclerView NullPointerException getItemCount?