解决Studio3.0 Dagger2注入Error:android-apt plugin不兼容的问题

今天做了一个K线图的ui,但是第三方框架中使用了Google官方推荐Dagger2注入框架,在导入时出现了以下错误:

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

经过查找资料发现,在Studio升级到3.0之后原来的配置方式apt与最新版本Gradle已经不兼容,推荐使用annotationProcessor。

解决方法:

一、把project目录下的build.gradle中的

classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'

删除掉。

二、把具体Module目录下的build.gradle中的

apply plugin: 'com.neenbedankt.android-apt'

删除掉。

三、同时dependencies中原来使用apt的改为annotationProcessor,然后Sync Now即可。


注:框架的demo直接导入是可以的,也是studio3.0版本,所有觉得可能还会与api的版本相关。目前暂时还没发现。


猜你喜欢

转载自blog.csdn.net/freak_csh/article/details/80783455