升级Android Studio到3.1后,butterknife报如下错误:
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 (com.jakewharton:butterknife:7.0.1)
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 } }
}
本文介绍了如何解决升级到Android Studio 3.1后遇到的ButterKnife兼容性问题。提供了具体的解决方案,即在项目的构建文件中添加特定配置来允许注解处理器包含编译类路径。

698

被折叠的 条评论
为什么被折叠?



