kotlin项目中使用ButterKnife注解无效

ButterKnife地址

在源码中提供的引入方式是Java项目中

在kotlin项目中需要做两处更改,

第一:引入kotlin-apt

apply plugin: 'kotlin-kapt'

第二:修改dependencies中的引入方式

annotationProcessor  "com.jakewharton:butterknife-compiler:$butterknife_version"

更换为:

kapt  "com.jakewharton:butterknife-compiler:$butterknife_version"

你可能感兴趣的:(kotlin项目中使用ButterKnife注解无效)