Open CasparGX opened 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
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.
@Bind
@BindView
Thanks! Why did they make such a drastic change? I had to redo my entire project because of that.
when I generate butterknife code:
it's show me the
Error: cannot find symbol class Bind
but my another project, that generate code:
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.