博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android Studio3.0 Error:Execution failed for task ':app:javaPreCompileDebug' 错误
阅读量:5219 次
发布时间:2019-06-14

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

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-6.0.0.jar (com.jakewharton:butterknife:6.0.0)  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/8669629.html

你可能感兴趣的文章
再谈Vmware NAT的配置和路由流程
查看>>
javaScript数组去重方法汇总
查看>>
评价意见整合
查看>>
MySQL表的四种分区类型
查看>>
C++变量的“总分性”(Mereology)
查看>>
应用软件学习心得之mapgis功能学习
查看>>
二、create-react-app自定义配置
查看>>
Android PullToRefreshExpandableListView的点击事件
查看>>
JS之放大镜效果
查看>>
基于UML网络教学管理平台模型的搭建
查看>>
不同的色深条件(8、16、24、32),像素绘制方式
查看>>
二分法原理
查看>>
push指令的执行过程
查看>>
陌生的熟悉地
查看>>
python 案例 011(猜数值)
查看>>
[转]Struts2理解--动态方法和method属性及通配符_默认Action
查看>>
编写一个程序,指定一个文件夹,能自动计算出其总容量
查看>>
排球积分程序
查看>>
表关联ID相同数据update修改
查看>>
参考美团、饿了么 && localStorage
查看>>