最新消息:关注【已取消】微信公众号,可以获取全套资料,【全套Java基础27天】【JavaEE就业视频4个月】【Android就业视频4个月】

Error:Execution failed for task ':app:javaPreCompileDebug'异常

Android 太平洋学习网 0浏览 评论

android studio3.0升级之后出现Error:Execution failed for task ':app:javaPreCompileDebug'异常,这是因为butterknife错误造成的,具体异常如下:

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-6.1.0.jar (com.jakewharton:butterknife:6.1.0)

  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.

解决方案:修改build.gradle文件,添加如下配置内容即可

android {    
	defaultConfig {
		...
		javaCompileOptions {
			annotationProcessorOptions {
				includeCompileClasspath = true
			}
		}
	}
}


来源网站:太平洋学习网,转载请注明出处:http://www.tpyyes.com/a/android/474.html
"文章很值,打赏犒劳作者一下"
微信号: Javaweb_engineer

打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,你说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

与本文相关的文章

发表我的评论
取消评论

表情

您的回复是我们的动力!

  • 昵称 (必填)

网友最新评论