码迷,mamicode.com
首页 > 其他好文 > 详细

bufferknife框架的正确使用方式 -终于他么知道了

时间:2017-07-24 13:02:41      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:class   files   gradle   name   oid   ace   app   path   1.0   

1.由于ButterKnife从7.x到8.x后,运行时和编译器被分开来,你还需要配置 apt ‘com.jakewharton:butterknife-compiler:8.1.0’,在project的build.gradle里的dependencies 作如下配置:

 dependencies {
    classpath ‘com.android.tools.build:gradle:2.2.0‘
    classpath ‘com.neenbedankt.gradle.plugins:android-apt:1.8‘
    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
}

2.在app的build.gradle里的最上面作如下配置:

apply plugin: ‘com.android.application‘
apply plugin: ‘com.neenbedankt.android-apt‘

3.在app的build.gradle里的dependencies 作如下配置:

compile ‘com.jakewharton:butterknife:8.2.1‘
apt ‘com.jakewharton:butterknife-compiler:8.2.1‘

bufferknife框架的正确使用方式 -终于他么知道了

标签:class   files   gradle   name   oid   ace   app   path   1.0   

原文地址:http://www.cnblogs.com/Peit/p/7227981.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!