博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
AndroidStudio3.0 Canary 8注解报错Annotation processors must be explicitly declared now.
阅读量:4984 次
发布时间:2019-06-12

本文共 927 字,大约阅读时间需要 3 分钟。

体验最新版AndroidStudio3.0 Canary 8的时候,发现之前项目的butter knife报错,用到注解的应该都会报错Error:Execution failed for task ':app:javaPreCompileDebug'.> Annotation processors must be explicitly declared now.  The following dependencies on the compile classpath are found to contain annotation processor.  Please add them to the annotationProcessor configuration.    - butterknife-7.0.1.jar  Alternatively, set android.defaultConfig.javaCompileOptions.annotationProcessorOptions.includeCompileClasspath = true to continue with previous behavior.  Note that this option is deprecated and will be removed in the future.  See https://developer.android.com/r/tools/annotation-processor-error-message.html for more details.在app的build中android {    ...    defaultConfig {        ...        //添加如下配置就OK了        javaCompileOptions { annotationProcessorOptions { includeCompileClasspath = true } }    }    ...}

 

转载于:https://www.cnblogs.com/zhujiabin/p/8241387.html

你可能感兴趣的文章
NOIP2011T2 统计单词数
查看>>
springboot情操陶冶-@Conditional和@AutoConfigureAfter注解解析
查看>>
每日5min分享-接口测试框架
查看>>
超好用超短的小程序请求封装
查看>>
PHP 解析Url 面向对象
查看>>
nodejs express route 的用法
查看>>
Python多线程
查看>>
java IO整理-File
查看>>
粗谈Springboot框架,众所周知Springboot是有spring推出的微服务框架,什么是微服务框架呢!...
查看>>
家庭记账本六
查看>>
离钱越近,才能赚钱越‘稳’
查看>>
mapping.mapper.xml文件中的标签详解
查看>>
duilib中各控件响应的消息类型
查看>>
链表翻转
查看>>
JS常见算法题目
查看>>
软件工程——理论、方法与实践⑦
查看>>
openstack镜像服务glance
查看>>
商品评论
查看>>
【转】Android 组件系列-----Activity保存状态
查看>>
批处理实现多线程执行命令列表文件
查看>>