ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

android – ButterKnife和AnnotationProcessor

2019-07-22 10:26:25  阅读:242  来源: 互联网

标签:android-gradle butterknife android


基于ButterKnife lib,我升级到新版本8.5.1.我用了

compile 'com.jakewharton:butterknife:8.5.1'
  annotationProcessor 'com.jakewharton:butterknife-compiler:8.5.1'

但它在我的Android Studio 2.3中警告我.并且ButterKnife不起作用(不能绑定视图).

Warning:Using incompatible plugins for the annotation processing:
android-apt. This may result in an unexpected behavior.

我将annotationProcessor更改为apt(我有插件应用插件:’com.neenbedankt.android-apt’在我的gradle中)并且它在没有警告的情况下作为旧版本工作(我使用旧版本8.4.0的apt)

compile 'com.jakewharton:butterknife:8.5.1'
apt 'com.jakewharton:butterknife-compiler:8.5.1'

我认为Android Studio 2.3与Annottaion处理不兼容.我搜索并发现在Android Studio 2.2中启用了注释处理器,但在Android Studio 2.3中找不到

Settings > Build, Execution, Deployment > Compiler > Annotation
Processors

有谁能解释这个问题?谢谢!

解决方法:

和蔼

//apply plugin: 'com.neenbedankt.android-apt'  <--remove this
apply plugin: 'com.jakewharton.butterknife'  <-- add this


dependencies {
    //classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'  <-- remove this
    classpath 'com.jakewharton:butterknife-gradle-plugin:8.5.1' <-- add this
}

然后在应用程序依赖项中

//牛油刀

compile 'com.jakewharton:butterknife:8.5.1'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.5.1'

标签:android-gradle,butterknife,android
来源: https://codeday.me/bug/20190722/1501584.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有