访问官网Butterknife中有最近引用的版本
dependencies {
compile 'com.jakewharton:butterknife:8.2.1' // 添加ButterKnife注解
apt 'com.jakewharton:butterknife-compiler:8.2.1'
}
引用的时候可能会报gradle没有apt方法的错误:
Error:(29, 0) Gradle DSL method not found: 'apt()'
Possible causes:The project 'RecyclerViewDemo' may bu using a version of Gradle that does not contain the method.
解决方法是在主工程中的build.gradle中添加:
dependencies {
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
}
在App中的build.gradle中最顶端引入插件:
apply plugin: 'com.neenbedankt.android-apt'
最后同步一下gradle.