1. 程式人生 > >butterknife 接入、使用和Android studio3.0適配問題

butterknife 接入、使用和Android studio3.0適配問題

看到許多關於butterknife的文章,介紹的都特別詳細,就是太複雜了,不方便使用,升級Android studio之後出現和butter knife適配的問題,今天記下來,方便之後使用

一、接入

1、在moudle的gradle中

compile 'com.jakewharton:butterknife:8.4.0'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.4.0'

新增外掛

apply plugin: 'com.jakewharton.butterknife'

2、在專案的gradle中

repositories {
    google()
    jcenter()
    mavenCentral()
}
dependencies {
    classpath 'com.android.tools.build:gradle:3.0.0'
classpath 'com.jakewharton:butterknife-gradle-plugin:8.4.0' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files }
二、使用

滑鼠選中佈局檔案,alt+ins

以上就ok了,

三、問題

升級3.0之後的問題,暫時只能降至8.4版本