avast / android-butterknife-zelezny

Android Studio plug-in for generating ButterKnife injections from selected layout XML.
Apache License 2.0
3.38k stars 412 forks source link

This use @Bind without @BindView, Error: cannot find symbol class Bind #140

Open CasparGX opened 7 years ago

CasparGX commented 7 years ago

when I generate butterknife code:

    @Bind(R.id.text_view)
    TextView mTextView;

it's show me the Error: cannot find symbol class Bind

but my another project, that generate code:

    @BindView(R.id.text_view)
    TextView mTextView;

it's successful.

I fix the @Bind to @BindView, it's successful too, but the plugin cant generate @BindView in this project, I need help, thanks.

williaanlopes commented 6 years ago

Thanks! Why did they make such a drastic change? I had to redo my entire project because of that.