您的位置:首页 > 移动开发 > Android开发

【Bug】android Studio使用butterknife报错的解决方法

2018-03-24 22:26 746 查看
转载自: https://blog.csdn.net/huangxiaoguo1/article/details/78111857

报错:

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.


解决方法:

android {
...
defaultConfig {
...
javaCompileOptions {
annotationProcessorOptions {
includeCompileClasspath = true
}
}
}
}


在defaultConfig{}下添加:

javaCompileOptions {
annotationProcessorOptions {
includeCompileClasspath = true
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  butterknife
相关文章推荐