Change for app gradle
implementation 'com.jakewharton:butterknife:8.7.0'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.7.0' // updated code
Change for Java Code
@BindView(R.id.recycler_view)
protected RecyclerView mRecyclerView;
@BindView(R.id.toolbar)
protected Toolbar mToolbar;
For more information
http://jakewharton.github.io/butterknife/
Change for app gradle
implementation 'com.jakewharton:butterknife:8.7.0'annotationProcessor 'com.jakewharton:butterknife-compiler:8.7.0' // updated codeChange for Java Code
@BindView(R.id.recycler_view)protected RecyclerView mRecyclerView;@BindView(R.id.toolbar)protected Toolbar mToolbar;For more information
http://jakewharton.github.io/butterknife/