继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

使用apt导入时报警告

吃鸡游戏
关注TA
已关注
手记 497
粉丝 55
获赞 339

使用apt来导入butterknife和dagger的时候,会报警告 (在引用databinding的时候会报,其他不会)
Warning:Using incompatible plugins for the annotation processing: android-apt. This may result in an unexpected behavior.
解决方案:
1、apt 'com.jakewharton:butterknife-compiler:8.2.1' 改为=》annotationProcessor 'com.jakewharton:butterknife-compiler:8.2.1'
2、删除:project build.gradle 中的
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8' 添加apt的操作

3、删除 app build.gradle 中的:
apply plugin: 'com.neenbedankt.android-apt'

总的来说只需在app/grade中添加两句就可以了
compile 'com.jakewharton:butterknife:8.2.1'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.2.1'
不过按之前那种方式也可以,运行也不会报错,看个人而言。。。

原文链接:http://www.apkbus.com/blog-941978-77620.html

打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP