butterknife v10.1.0 Release Notes
Release Date: 2019-02-13 // over 4 years ago-
- New: Listeners which require return values (e.g., long click) can now be bound to methods returning
void
. The default value oftrue
will be returned in this case. - New: Add support for
@OnTextChanged
and@OnPageChange
to reflection backend. - Remove enforcement of required views in the reflection backend. Most
@Nullable
annotations do not have runtime retention so they can't be checked at runtime with reflection. Instead of forcing everyone to find a new annotation, this enforcement is now dropped. While this might lead to nulls in otherwise required view bindings, they'll either be unused or quickly cause aNullPointerException
.
- New: Listeners which require return values (e.g., long click) can now be bound to methods returning