ButterKnife 8.0.1 not working

前端 未结 10 1184
粉色の甜心
粉色の甜心 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:31

    Config Butterknife on build.gradle file like this,

    compile("com.jakewharton:butterknife:8.5.1")
    annotationProcessor "com.jakewharton:butterknife-compiler:8.5.1"
    

    It works for me.

提交回复
热议问题