ButterKnife 8.0.1 not working

前端 未结 10 1199
粉色の甜心
粉色の甜心 2020-12-05 16:42

I am using butterknife 8.0.1, but a nullpointerexception is appearing.

This line is on my build.grade file: compile \'com.ja

10条回答
  •  醉酒成梦
    2020-12-05 17:37

    If you use kotlin:

    make sure to use this dependency in module app:

    dependencies {
       implementation 'com.jakewharton:butterknife:10.0.0'
       kapt 'com.jakewharton:butterknife-compiler:10.0.0'
    }
    

提交回复
热议问题