Architecture Components (AC) brought us LiveData, a lifecycle-aware observable data holder class - the idea is great and sounds super handy. The thing is, once we start using it multiple problems emerge: Additional code onChanged parameter in Observer interface is annotated as @Nullable so we must always handle null case in our…