I am hooked on Butterknife (Jake Wharton, you are my hero) and would like to add this by default to the gradle configuration for all new projects that I create. I searched and cannot find where this is done in Android Studio (2.3).
Does someone know how to do this?
I know that I need to include this in my build.gradle (app-level):
dependencies {
...
compile 'com.jakewharton:butterknife:8.7.0'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.7.0'
...
}