You all probably know this, but if you are storing...
# android-databinding
e
You all probably know this, but if you are storing your binding in your
Fragment
, you must set it to
null
in
onDestroyView()
, otherwise you will leak the
Views
that the binding holds.
🙌 4