Error:android-apt plugin is incompatible with the Android Gradle plugin. Please use 'annotationProcessor' configuration instead.

Posted by Don on July 1, 2019

有一天,android studio推送了更新,更新后发现项目报错如下:

Error: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了,所以,解决方案如下:

1.把module/build.gradle下的apt插件代码删除

2.把dependencies下的apt全部改为annotationProcessor

3.把project/build.gradle中的apt插件声明删除