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

转载自: 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  
            }
        }

猜你喜欢

转载自blog.csdn.net/go_d_og/article/details/79682442