解决Android Studio 3.0 butterknife:7.0.1配置的问题
作者:jingjc
下面小编就为大家分享一篇解决Android Studio 3.0 butterknife:7.0.1配置的问题,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
网上教程7.0大多数配置是这样compile ‘com.jakewharton:butterknife:7.0.1' ,不知道他们用的Android Studio是多少版本,我用的3.0并没有成功,报错如下:
Error:Execution failed for task ‘:app:javaPreCompileDebug'. 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.
解决办法:加上 annotationProcessor ‘com.jakewharton:butterknife:7.0.1'即可解决
以上这篇解决Android Studio 3.0 butterknife:7.0.1配置的问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。