Android Studio gradle编译时出现如下错误:

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 (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.
  See https://developer.android.com/r/tools/annotation-processor-error-message.html for more details.

解决方法:

 在app-->build.gradle中

     defaultConfig{

  .........

添加如下代码:

javaCompileOptions {    annotationProcessorOptions {        includeCompileClasspath = true    }

}

更多相关文章

  1. Android Camera子系统代码流程1
  2. 【Demo实例】Android FTP上传带进度条(优化后代码)
  3. android全屏设置代码
  4. Android中一些比较好的开源代码项目
  5. 【分享】大量android软件开发资料和实例代码【转】
  6. android Context错误使用引发的内存泄露
  7. android 中xml文件中出现 Attr.value missing 错误
  8. Eclipse Android 代码自动提示功能
  9. 【Android 应用开发】 Android 相关代码规范 更新中 ...

随机推荐

  1. Android(安卓)skia 和open skia的比较
  2. 如何实现对Android设备进行文本的模拟输
  3. Android电源管理系列之PowerManagerServi
  4. 通过 Android(安卓)SDK Manager 安装面向
  5. Android统计图表之柱状图(条形图)
  6. 自定义gradle插件
  7. 常用的布局和View常用属性
  8. android实现TextView多行文本滚动
  9. Android(安卓)自定义Menu
  10. Android应用程序开发的五大概念