解决Studio3.0 Dagger2注入Error:android-apt plugin不兼容的问题
https://blog.csdn.net/hanfengzqh/article/details/78487169?locationNum=3&fps=1
天在导入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
No
Dagger2基本使用与原理w即可。
https://blog.csdn.net/fan_zyf/article/details/71720592
Dagger2 这次入门就不用放弃了
https://blog.csdn.net/u012943767/article/details/51897247
原文地址:https://www.cnblogs.com/liangxy/p/9222036.html
时间: 2024-10-09 02:44:30