博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java.lang.RuntimeException: Annotation processors must be explicitly declared now.
阅读量:5332 次
发布时间:2019-06-14

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

Android Studio升级到最新版3.0 Canary 8后,当使用到注解时,报了如下错误: 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 解决办法:在Gradle中添加如下代码
android {    ...        defaultConfig {        ...        javaCompileOptions {             annotationProcessorOptions {                 includeCompileClasspath = true             }         }    }        ...}

且保证多module只有一个依赖了butterknife注解库

 

转载于:https://www.cnblogs.com/evolutionoflicorice/p/10418052.html

你可能感兴趣的文章
Python之旅Day14 JQuery部分
查看>>
core--线程池
查看>>
redux-effect
查看>>
Swift和OC混编
查看>>
Android轻量级的开源缓存框架ASimpleCache
查看>>
他山之石:加载图片的一个小问题
查看>>
shell - 常识
查看>>
[PHP] excel 的导入导出
查看>>
mssql sqlserver 使用sql脚本 清空所有数据库表数据的方法分享
查看>>
分层图最短路【bzoj2763】: [JLOI2011]飞行路线
查看>>
linux下编译复数类型引发的错误:expected unqualified-id before '(' token
查看>>
codeforces 1041A Heist
查看>>
字典常用方法
查看>>
Spring Cloud Stream消费失败后的处理策略(三):使用DLQ队列(RabbitMQ)
查看>>
python的猴子补丁monkey patch
查看>>
架构模式: API网关
查看>>
正则验证积累
查看>>
Linux学习-汇总
查看>>
jQuery瀑布流+无限加载图片
查看>>
83. 删除排序链表中的重复元素
查看>>