Android Studio
报错:
android-apt plugin is incompatible with the Android Gradle plugin. Please use 'annotationProcessor' configuration instead.
解决:
最新版Android Studio所搭配的com.android.tools.build:gradle:3.0.0及更高版本不支持目前1.8版本的apt了,所以先把project的build.gradle中
1classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
删掉。然后把module的build.gradle中的
1apply plugin: 'com.neenbedankt.android-apt'
也删掉。再把之前dependencies中类似于
1apt 'com.jakewharton:butterknife-compiler:8.8.1'
中的apt换成annotationProcessor。
OK