“黄油刀”butterknife插件的使用注意事项

能加的都加上没毛病

1 。 apply plugin: 'com.neenbedankt.android-apt'
2 。
buildscript{
repositories{
mavenCentral()
jcenter()
}
dependencies {
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
}
}
3 。
//视图绑定 butterknife
apt 'com.jakewharton:butterknife-compiler:8.4.0'
compile 'com.jakewharton:butterknife:8.4.0'
compile 'de.greenrobot:eventbus:3.0.0-beta1'

猜你喜欢

转载自www.cnblogs.com/yfafa/p/9075498.html