My previous config
AS = 2.3
gradle = 2.3.3
distributionUrl = https://services.gradle.org/distributions/gradle-4.1-all.zip
Views referenced via @Bind(R.id.tvName)
My current config
AS = 3.0.1
gradle = 3.0.1
distributionUrl = https://services.gradle.org/distributions/gradle-4.1-all.zip
Now I have to refer views as @BindView(R.id.tvName)
What I did
I replaced every occurance of @Bind with @BindView by ctrl+shft+R
What happened
When I run the project I get cannot find symbol class BindView
Gradle
implementation 'com.jakewharton:butterknife:8.8.1'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'