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-5.1.1.jar (com.jakewharton:bu
解决办法:
在相应的Gradle配置文件下
defaultConfig添加如下代码:
javaCompileOptions {
annotationProcessorOptions {
includeCompileClasspath true
}
}