欢迎来到代码驿站!

Android代码

当前位置:首页 > 移动开发 > Android代码

androidstudio3.0使用butterknife报错解决的解决方法

时间:2021-03-03 10:08:47|栏目:Android代码|点击:

问题

在添加butterKnife依赖的时候出现如下错误:

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 
      }
    }
  }
}

添加上面配置就好…………….

上一篇:Android Studio实现简单购物车功能

栏    目:Android代码

下一篇:Android上使用ZXing识别条形码与二维码的方法

本文标题:androidstudio3.0使用butterknife报错解决的解决方法

本文地址:http://www.codeinn.net/misctech/73504.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有