I need to install the plugin Butter Knife. Where can I download it? I downloaded a .jar plugin (but not if the file is the one I need), I have installed but when I click on
In Android Studio you can do this by:
After selecting the library, Android Studio adds the dependency to your module.
Since butterknife does annotation processing, you have to add this to the build.gradle of your module right after the compile statement for butterknife:
annotationProcessor 'com.jakewharton:butterknife-compiler:8.5.1'
where the version number at the end should match your version of butterknife.