美文网首页
android studio 升级到2.3 不支持apt

android studio 升级到2.3 不支持apt

作者: SnowDragonYY | 来源:发表于2017-09-11 10:27 被阅读0次

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

相关文章

网友评论

      本文标题:android studio 升级到2.3 不支持apt

      本文链接:https://www.haomeiwen.com/subject/ldbxsxtx.html