Coding Challenge: Automatic Room Migration
Test your understanding of automatic Room migrations with a coding challenge.
We'll cover the following...
Problem definition
We learned about automatic data migrations in the previous lesson. Let’s apply what we learned and add a new address field in the User entity and use it for read and write operations.
Instructions to follow:
Add the
addressfield in theUserentity by updating theUser.ktfile.Add an automatic ...
Ask