I am using butterknife 8.0.1, but a nullpointerexception is appearing.
This line is on my build.grade file:
compile \'com.ja
I used this library in Fragment and has NPE. My code was:
ButterKnife.bind(view);
But it was wrong. Library need to know two objects:
1) Target - with annotations @BindView
2) Source - with views
It will be right to write:
ButterKnife.bind(this, view);
When this - your fragment, and view - view of this fragment.