avast / android-butterknife-zelezny

Android Studio plug-in for generating ButterKnife injections from selected layout XML.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

CasparGX opened this issue · comments

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.

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