I am getting a cannot resolve symbol error when trying to build my app. The error is coming from the ViewBinder class that Butterknife generates.
C:\Users\dave\AndroidStudioProjects\SoundBoard\app\build\generated\source\apt\debug\com\wochstudios\InfiniteSoundboards\MainActivity$$ViewBinder.java:8: error: cannot find symbol
import com.wochstudios.InfiniteSoundboards;
^
symbol: class InfiniteSoundboards
location: package [com.wochstudios]
I have attached the activity where I am using ButterKnife. I have all the dependencies setup in my gradle files and I've tried cleaning and rebuilding the app a few times now. Not sure why this issue is coming up.
It's because your package name is uppercase. Dupe of #507. I'll fix soon.
thanks!
Thanks u saved my time
Thank you JakeWharton , works perfectly.
Most helpful comment
It's because your package name is uppercase. Dupe of #507. I'll fix soon.