關於dagger2
阿新 • • 發佈:2018-06-25
tle ogl 方式 CA TE plugins mpat 版本 3.0
解決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
關於dagger2