在最新的AS的使用butterknife的項目編譯報錯
Annotation processors must be explicitly declared now
針對第二個問題則需要在app的build.gradle的 defaultConfig 中添加如下配置:
javaCompileOptions { annotationProcessorOptions { includeCompileClasspath = true } }
sync now 即可解決問題。
在最新的AS的使用butterknife的項目編譯報錯
Annotation processors must be explicitly declared now
針對第二個問題則需要在app的build.gradle的 defaultConfig 中添加如下配置:
javaCompileOptions { annotationProcessorOptions { includeCompileClasspath = true } }
sync now 即可解決問題。