Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Android Build a Weather App (2015) Hooking Up the Model to the View Using Butter Knife for Views

J A
seal-mask
.a{fill-rule:evenodd;}techdegree
J A
Full Stack JavaScript Techdegree Student 4,646 Points

Cannot resolve symbol ButterKnife when I try to bind().

I can't seem to resolve ButterKnife in

ButterKnife.bind(this)

Oddly enough, @BindView doesn't complain of any error. I am importing butterknife.BindView but have also tried importing butterknife.* to no avail. I've got version 8.4.0 of butterknife-compiler in the build.gradle file.

Seth Kroger
Seth Kroger
56,413 Points

Your build.gradle files?

1 Answer

J A
seal-mask
.a{fill-rule:evenodd;}techdegree
J A
Full Stack JavaScript Techdegree Student 4,646 Points

The problem was between the keyboard and chair, apparently. I had the compile line in the build.gradle file, but I was missing the annotationProcessor

In the end, I just added these to my gradle file:

compile 'com.jakewharton:butterknife:8.4.0'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.4.0'