Sorry if this question has been asked before. I am using the Butterknife 5.0 with the latest version of Android Studio(0.5.7). How can I remove the \"Method is never used\"
Add another dependency for the compiler:
Gradle
dependencies {
annotationProcessor 'com.jakewharton:butterknife-compiler:8.4.0' // new line
compile 'com.jakewharton:butterknife:8.4.0' // original library
}
This is recommended on the official website.
Remember to Build -> Rebuild Project, so it will generate usages and make the warning go away.