androidstudi3.0 butterknife的使用

TTMMJJ99發表於2017-11-10
一。在file->seting->plugins中加入butterknife下載量最多的;

   在model的build.gradle中加入依賴
   studio3.0依賴
    implementation 'com.jakewharton:butterknife:8.8.1'
    implementation 'com.jakewharton:butterknife-compiler:8.8.1'

報錯module的defaultConfig新增

javaCompileOptions {
    annotationProcessorOptions {
        includeCompileClasspath = true
    }
}
或者
compile 'com.jakewharton:butterknife:6.1.0'   
annotationProcessor 'com.jakewharton:butterknife-compiler:8.4.0'
 

相關文章