维护一份老项目 突然有个组件的Butter Knife失效了
怎么也找不到原因,最后在github 上发现
If you are using Kotlin, replace annotationProcessor with kapt.
原来我新添加了kotlin 插件 要把:
annotationProcessor 'com.jakewharton:butterknife-compiler:10.2.3'
改为
kapt 'com.jakewharton:butterknife-compiler:10.2.3'
网友评论