当前位置:   article > 正文

Butterknife+kotlin出现的坑_com.jakewharton:butterknife:10.0.0

com.jakewharton:butterknife:10.0.0

正常引用Butterknife

module的build文件中

implementation "com.jakewharton:butterknife:10.0.0"
annotationProcessor "com.jakewharton:butterknife-compiler:10.0.0"
  • 1
  • 2

编译运行无效,

Butterknife的文档里有这么一句话:

If you are using Kotlin, replace annotationProcessor with kapt.
  • 1

所以替换annotationProcessor 为kapt

所以在kotlin环境下使用Butterknife的正确姿势

implementation "com.jakewharton:butterknife:10.0.0"
kapt "com.jakewharton:butterknife-compiler:10.0.0"
  • 1
  • 2
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/529682
推荐阅读
相关标签
  

闽ICP备14008679号