使用apt來導入butterknife和dagger的時候,會報警告 (在引用databinding的時候會報,其餘不會)
Warning:Using incompatible plugins for the annotation processing: android-apt. This may result in an unexpected behavior.
解決方案:
一、apt 'com.jakewharton:butterknife-compiler:8.2.0' 改成=》annotationProcessor 'com.jakewharton:butterknife-compiler:8.2.0'
二、刪除:project build.gradle 中的
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8' 添加apt的操做
三、刪除 app build.gradle 中的:
apply plugin: 'com.neenbedankt.android-apt'
以上三步完成後同步就ok了
原文:https://stackoverflow.com/questions/42632662/android-studio-warning-using-incompatible-plugins-for-the-annotation-processing最下面的回答就是這三步。