android studio 升级到2.3 不支持apt

来源:互联网 发布:unity3d帧动画 编辑:程序博客网 时间:2024/06/03 09:25

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’
}

原创粉丝点击