Lifecycle-aware components
ViewModel
LiveData
Room
You saw a bit of the architecture components in the previous chapter. In this chapter, you’ll look at some other libraries in the architecture components, namely Room. It’s a persistence library that sits on top of SQLite. If you’ve used an ORM (object-relational mapper) before, you can think of Room as something like that.
Also in this chapter, you’ll explore some more libraries in the architecture components that go hand in hand with the Room library. You’ll look at ...