1. 程式人生 > >android studio 升級到2.3 不支援apt

android studio 升級到2.3 不支援apt

android studio 升級到2.3以後提示:
Warning:Using incompatible plugins for the annotation processing: android-apt. This may result in an unexpected behavior.

原因:

android studio 2.3以後不支援 apt

解決方式:

把專案中build.gradle中的
apply plugin: ‘com.neenbedankt.android-apt’ 刪掉

dependencies下所有apt的引用
dependencies {
apt ‘com.jakewharton:butterknife-compiler:8.8.1’
}
全部換成
dependencies {
annotationProcessor ‘com.jakewharton:butterknife-compiler:8.8.1’
}