完整异常
Error:A problem occurred configuring project ‘:modulebase’.
> android-apt plugin is incompatible with the Android Gradle plugin. Please use ‘annotationProcessor’ configuration instead.
异常提示:
错误:配置项目’:modulebase’时出现问题。
> android-apt插件与Android Gradle插件不兼容。 请改用“annotationProcessor”配置。
环境:
AS 3.0.1
grade classpath ‘com.android.tools.build:gradle:3.0.1’
distributionUrl=https\://http://services.gradle.org/distributions/gradle-4.1-all.zip
分析:
android studio 3.0以上不能使用android-apt
故把gradle里面的android-apt删除,apt编译库,改为annotationProcessor
异常解决