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 trialJ A
Full Stack JavaScript Techdegree Student 4,646 PointsCannot 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.
1 Answer
J A
Full Stack JavaScript Techdegree Student 4,646 PointsThe 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'
Seth Kroger
56,413 PointsSeth Kroger
56,413 PointsYour build.gradle files?